1
Fork 0
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:
Richard M. Stallman 1993-12-24 02:44:13 +00:00
parent 3f849529a6
commit 1f6fcec334

View file

@ -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)))