diff options
| -rw-r--r-- | lisp/completion.el | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lisp/completion.el b/lisp/completion.el index d3f118705b7..b53f2d3ac79 100644 --- a/lisp/completion.el +++ b/lisp/completion.el | |||
| @@ -2228,12 +2228,9 @@ TYPE is the type of the wrapper to be added. Can be :before or :under." | |||
| 2228 | (defun completion-lisp-mode-hook () | 2228 | (defun completion-lisp-mode-hook () |
| 2229 | (setq completion-syntax-table completion-lisp-syntax-table) | 2229 | (setq completion-syntax-table completion-lisp-syntax-table) |
| 2230 | ;; Lisp Mode diffs | 2230 | ;; Lisp Mode diffs |
| 2231 | (local-set-key "!" 'self-insert-command) | 2231 | (setq-local completion-separator-chars |
| 2232 | (local-set-key "&" 'self-insert-command) | 2232 | (cl-set-difference completion-separator-chars |
| 2233 | (local-set-key "%" 'self-insert-command) | 2233 | (append "!&%?=^" nil)))) |
| 2234 | (local-set-key "?" 'self-insert-command) | ||
| 2235 | (local-set-key "=" 'self-insert-command) | ||
| 2236 | (local-set-key "^" 'self-insert-command)) | ||
| 2237 | 2234 | ||
| 2238 | ;; C mode diffs. | 2235 | ;; C mode diffs. |
| 2239 | 2236 | ||