]> code.delx.au - gnu-emacs/commitdiff
(next-complete-history-element): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Fri, 24 Dec 1993 02:44:13 +0000 (02:44 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 24 Dec 1993 02:44:13 +0000 (02:44 +0000)
(previous-complete-history-element): Doc fix.

lisp/simple.el

index 85557739654a4443318fc039e8d8c5e54b981ba4..6f5b0bc4ccfab131a8ea17130bdf819870594ea4 100644 (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)))
 \f