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
b6d61ffa
Commit
b6d61ffa
authored
Mar 08, 1997
by
Karl Heuer
Browse files
(Info-read-node-name): Caused completing-read to force
the input read to match a valid entry
parent
fd543be5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/info.el
lisp/info.el
+2
-2
No files found.
lisp/info.el
View file @
b6d61ffa
;;; info.el --- info package for Emacs.
;; Copyright (C) 1985
,
1986, 1992
, 1993,
199
4
Free Software Foundation, Inc.
;; Copyright (C) 1985
-
1986, 1992
-
199
7
Free Software Foundation, Inc.
;; Maintainer: FSF
;; Keywords: help
...
...
@@ -695,7 +695,7 @@ In standalone mode, \\<Info-mode-map>\\[Info-exit] exits Emacs itself."
(
defun
Info-read-node-name
(
prompt
&optional
default
)
(
let*
((
completion-ignore-case
t
)
(
completion-table
(
Info-build-node-completions
))
(nodename (completing-read prompt 'Info-read-node-name-1)))
(
nodename
(
completing-read
prompt
'Info-read-node-name-1
nil
t
)))
(
if
(
equal
nodename
""
)
(
or
default
(
Info-read-node-name
prompt
))
...
...
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