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
1f6fcec3
Commit
1f6fcec3
authored
Dec 24, 1993
by
Richard M. Stallman
Browse files
(next-complete-history-element): Doc fix.
(previous-complete-history-element): Doc fix.
parent
3f849529
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lisp/simple.el
lisp/simple.el
+3
-3
No files found.
lisp/simple.el
View file @
1f6fcec3
...
...
@@ -569,8 +569,7 @@ If N is negative, find the previous or Nth previous match."
(
next-history-element
(
-
n
)))
(
defun
next-complete-history-element
(
n
)
"\
Get
previous
element
of
history
which
is
a
completion
of
minibuffer
contents.
"
"Get next element of history which is a completion of minibuffer contents."
(
interactive
"p"
)
(
let
((
point-at-start
(
point
)))
(
next-matching-history-element
...
...
@@ -581,7 +580,8 @@ Get previous element of history which is a completion of minibuffer contents."
(
goto-char
point-at-start
)))
(
defun
previous-complete-history-element
(
n
)
"
Get
next
element
of
history
which
is
a
completion
of
minibuffer
contents.
"
"\
Get
previous
element
of
history
which
is
a
completion
of
minibuffer
contents.
"
(interactive "
p
")
(next-complete-history-element (- n)))
...
...
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