]> git.eshelyaron.com Git - emacs.git/commitdiff
(compilation-next-error): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Sat, 9 Feb 2008 14:22:49 +0000 (14:22 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 9 Feb 2008 14:22:49 +0000 (14:22 +0000)
lisp/ChangeLog
lisp/progmodes/compile.el

index 9e44d6a7e2bce6ec96ca6daa87e29e1aafa8ab04..27a2e5979ff389000696197b91efac3df506b9dc 100644 (file)
@@ -1,3 +1,7 @@
+2008-02-09  Eli Zaretskii  <eliz@gnu.org>
+
+       * progmodes/compile.el (compilation-next-error): Doc fix.
+
 2008-02-09  Glenn Morris  <rgm@gnu.org>
 
        * net/net-utils.el (ipconfig-program, ipconfig-program-options):
index 1fd0074dd41b72a8f31b5c00a5784a54e233df76..bd7302a5a7ef8285b0b64cd502537cf4bf6e1044 100644 (file)
@@ -1544,9 +1544,13 @@ Just inserts the text, but uses `insert-before-markers'."
 
 (defun compilation-next-error (n &optional different-file pt)
   "Move point to the next error in the compilation buffer.
+This function does NOT find the source line like \\[next-error].
 Prefix arg N says how many error messages to move forwards (or
 backwards, if negative).
-Does NOT find the source line like \\[next-error]."
+Optional arg DIFFERENT-FILE, if non-nil, means find next error for a
+file that is different from the current one.
+Optional arg PT, if non-nil, specifies the value of point to start
+looking for the next message."
   (interactive "p")
   (or (compilation-buffer-p (current-buffer))
       (error "Not in a compilation buffer"))