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
52ae2b42
Commit
52ae2b42
authored
Jul 11, 1994
by
Richard M. Stallman
Browse files
(lisp-complete-symbol): Bind completion-fixup-function.
parent
9a43a594
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
lisp/emacs-lisp/lisp.el
lisp/emacs-lisp/lisp.el
+6
-1
No files found.
lisp/emacs-lisp/lisp.el
View file @
52ae2b42
...
...
@@ -277,7 +277,12 @@ function definitions, values or properties are considered."
(
insert
completion
))
(
t
(
message
"Making completion list..."
)
(
let
((
list
(
all-completions
pattern
obarray
predicate
)))
(
let
((
list
(
all-completions
pattern
obarray
predicate
))
(
completion-fixup-function
(
function
(
lambda
()
(
if
(
save-excursion
(
goto-char
(
max
(
point-min
)
(
-
(
point
)
4
)))
(
looking-at
" <f>"
))
(
forward-char
-4
))))))
(
or
(
eq
predicate
'fboundp
)
(
let
(
new
)
(
while
list
...
...
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