mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-28 01:00:52 -07:00
(next-complete-history-element): Doc fix.
(previous-complete-history-element): Doc fix.
This commit is contained in:
parent
3f849529a6
commit
1f6fcec334
1 changed files with 3 additions and 3 deletions
|
|
@ -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)))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue