branch: externals/jinx
commit b7fd795c6cca2b209dcf93664ad23463430152fc
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>

    Remove C-u C-u C-u M-$
    
    Too much overloading...
---
 jinx.el | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/jinx.el b/jinx.el
index d992638fb0..fac85bf2c4 100644
--- a/jinx.el
+++ b/jinx.el
@@ -1070,15 +1070,11 @@ This command dispatches to the following commands:
     is 4, corresponding to \\[universal-argument] pressed once,
     correct all misspelled words.
   - `jinx-correct-word': If prefix ARG is 16, corresponding to
-    \\[universal-argument] pressed twice, correct word before point.
-  - If prefix ARG is 64, corresponding to \\[universal-argument] pressed
-    three times, check the whole buffer, but do not open the correction
-    UI."
+    \\[universal-argument] pressed twice, correct word before point."
   (interactive "*P")
   (pcase arg
     ('nil (if (use-region-p) (jinx-correct-all) (jinx-correct-nearest)))
     ('(16) (jinx-correct-word))
-    ('(64) (jinx-correct-all t))
     (_ (jinx-correct-all))))
 
 (defun jinx-correct-select ()

Reply via email to