Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
99d0735f
Commit
99d0735f
authored
May 23, 2000
by
Stefan Monnier
Browse files
(dynamic-completion-mode, dynamic-completion-mode): Don't quote lambdas.
parent
e5eee690
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
lisp/completion.el
lisp/completion.el
+4
-4
No files found.
lisp/completion.el
View file @
99d0735f
...
...
@@ -2407,13 +2407,13 @@ TYPE is the type of the wrapper to be added. Can be :before or :under."
;; Install the appropriate mode tables.
(
add-hook
'lisp-mode-hook
'
(
lambda
()
(
lambda
()
(
setq
cmpl-syntax-table
cmpl-lisp-syntax-table
)))
(
add-hook
'c-mode-hook
'
(
lambda
()
(
lambda
()
(
setq
cmpl-syntax-table
cmpl-c-syntax-table
)))
(
add-hook
'fortran-mode-hook
'
(
lambda
()
(
lambda
()
(
setq
cmpl-syntax-table
cmpl-fortran-syntax-table
)
(
completion-setup-fortran-mode
)))
...
...
@@ -2434,7 +2434,7 @@ TYPE is the type of the wrapper to be added. Can be :before or :under."
;; Save completions when killing Emacs.
(
add-hook
'kill-emacs-hook
'
(
lambda
()
(
lambda
()
(
kill-emacs-save-completions
)
(
cmpl-statistics-block
(
record-cmpl-kill-emacs
))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment