diff lisp/simple.el @ 5324:f091cdec77e2

(next-complete-history-element): Doc fix. (previous-complete-history-element): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Fri, 24 Dec 1993 02:44:13 +0000
parents 8b31cff02267
children f38861038093
line wrap: on
line diff
--- a/lisp/simple.el	Fri Dec 24 02:40:33 1993 +0000
+++ b/lisp/simple.el	Fri Dec 24 02:44:13 1993 +0000
@@ -569,8 +569,7 @@
   (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 @@
     (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)))