]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/compile.el (compilation-filter-start): Doc fix.
authorGlenn Morris <rgm@gnu.org>
Thu, 9 Feb 2012 07:28:32 +0000 (23:28 -0800)
committerGlenn Morris <rgm@gnu.org>
Thu, 9 Feb 2012 07:28:32 +0000 (23:28 -0800)
* etc/NEWS: Related edit.

etc/NEWS
lisp/ChangeLog
lisp/progmodes/compile.el

index 138689cff69fa61d201d976ffa27e8b9343d8808..5f85a1520d31ece275a2a75bd33865cecc6e3f9d 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -668,9 +668,10 @@ on platforms that support it.  This calls your desktop's preferred browser.
 *** Compilation mode can be used without font-lock-mode.
 `compilation-parse-errors-function' is now obsolete.
 
-*** `compilation-filter-start' is let-bound to the start of the text
-inserted by the compilation filter function, when calling
-compilation-filter-hook.
+---
+*** New variable `compilation-filter-start', bound while
+compilation-filter-hook runs.  It records the start position of the
+text inserted by compilation-filter.
 
 ---
 *** `compilation-error-screen-columns' and `compilation-first-column'
index e51f41fb99ef4cd0f20fc4c9795c2cfdb16b30e4..0af831976f05e904eb2477ff00b43e7d3c6c6514 100644 (file)
@@ -1,7 +1,7 @@
 2012-02-09  Glenn Morris  <rgm@gnu.org>
 
        * progmodes/compile.el (compilation-first-column)
-       (compilation-error-screen-columns): Doc fixes.
+       (compilation-error-screen-columns, compilation-filter-start): Doc fixes.
 
        * vc/log-view.el (log-view-toggle-entry-display):
        * vc/vc.el (vc-merge, vc-pull): Doc fixes.
index 6c48eee7f4b12e60188d23e831ac6f35c3941621..c1d8f9db23fa512dbd036a628905f49e60f02f05 100644 (file)
@@ -74,8 +74,8 @@ If Emacs lacks asynchronous process support, this hook is run
 after `call-process' inserts the grep output into the buffer.")
 
 (defvar compilation-filter-start nil
-  "Start of the text inserted by `compilation-filter'.
-This is bound to a buffer position before running `compilation-filter-hook'.")
+  "Position of the start of the text inserted by `compilation-filter'.
+This is bound before running `compilation-filter-hook'.")
 
 (defvar compilation-first-column 1
   "*This is how compilers number the first column, usually 1 or 0.