diff options
| author | Eli Zaretskii | 2008-02-09 14:22:49 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-02-09 14:22:49 +0000 |
| commit | d0048c60f239ad126d061b5ddbf5145cf309e25d (patch) | |
| tree | a1620218de6610601b2b64fa97d3b8db47f30209 | |
| parent | d375705e3c31d18dd50474ec95ec84bc05c2b23d (diff) | |
| download | emacs-d0048c60f239ad126d061b5ddbf5145cf309e25d.tar.gz emacs-d0048c60f239ad126d061b5ddbf5145cf309e25d.zip | |
(compilation-next-error): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9e44d6a7e2b..27a2e5979ff 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-02-09 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/compile.el (compilation-next-error): Doc fix. | ||
| 4 | |||
| 1 | 2008-02-09 Glenn Morris <rgm@gnu.org> | 5 | 2008-02-09 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * net/net-utils.el (ipconfig-program, ipconfig-program-options): | 7 | * net/net-utils.el (ipconfig-program, ipconfig-program-options): |
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 1fd0074dd41..bd7302a5a7e 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -1544,9 +1544,13 @@ Just inserts the text, but uses `insert-before-markers'." | |||
| 1544 | 1544 | ||
| 1545 | (defun compilation-next-error (n &optional different-file pt) | 1545 | (defun compilation-next-error (n &optional different-file pt) |
| 1546 | "Move point to the next error in the compilation buffer. | 1546 | "Move point to the next error in the compilation buffer. |
| 1547 | This function does NOT find the source line like \\[next-error]. | ||
| 1547 | Prefix arg N says how many error messages to move forwards (or | 1548 | Prefix arg N says how many error messages to move forwards (or |
| 1548 | backwards, if negative). | 1549 | backwards, if negative). |
| 1549 | Does NOT find the source line like \\[next-error]." | 1550 | Optional arg DIFFERENT-FILE, if non-nil, means find next error for a |
| 1551 | file that is different from the current one. | ||
| 1552 | Optional arg PT, if non-nil, specifies the value of point to start | ||
| 1553 | looking for the next message." | ||
| 1550 | (interactive "p") | 1554 | (interactive "p") |
| 1551 | (or (compilation-buffer-p (current-buffer)) | 1555 | (or (compilation-buffer-p (current-buffer)) |
| 1552 | (error "Not in a compilation buffer")) | 1556 | (error "Not in a compilation buffer")) |