aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-02-08 23:28:32 -0800
committerGlenn Morris2012-02-08 23:28:32 -0800
commit34c071c64ba9f5c06b29dfda5a01d1c7722cecd8 (patch)
tree4c242716327ca4b2d6fd2c0d913066a3153fbc50
parent8327412569d4b82a58c38696bb9dca3f2e6d2364 (diff)
downloademacs-34c071c64ba9f5c06b29dfda5a01d1c7722cecd8.tar.gz
emacs-34c071c64ba9f5c06b29dfda5a01d1c7722cecd8.zip
* lisp/progmodes/compile.el (compilation-filter-start): Doc fix.
* etc/NEWS: Related edit.
-rw-r--r--etc/NEWS7
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/progmodes/compile.el4
3 files changed, 7 insertions, 6 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 138689cff69..5f85a1520d3 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -668,9 +668,10 @@ on platforms that support it. This calls your desktop's preferred browser.
668*** Compilation mode can be used without font-lock-mode. 668*** Compilation mode can be used without font-lock-mode.
669`compilation-parse-errors-function' is now obsolete. 669`compilation-parse-errors-function' is now obsolete.
670 670
671*** `compilation-filter-start' is let-bound to the start of the text 671---
672inserted by the compilation filter function, when calling 672*** New variable `compilation-filter-start', bound while
673compilation-filter-hook. 673compilation-filter-hook runs. It records the start position of the
674text inserted by compilation-filter.
674 675
675--- 676---
676*** `compilation-error-screen-columns' and `compilation-first-column' 677*** `compilation-error-screen-columns' and `compilation-first-column'
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e51f41fb99e..0af831976f0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,7 +1,7 @@
12012-02-09 Glenn Morris <rgm@gnu.org> 12012-02-09 Glenn Morris <rgm@gnu.org>
2 2
3 * progmodes/compile.el (compilation-first-column) 3 * progmodes/compile.el (compilation-first-column)
4 (compilation-error-screen-columns): Doc fixes. 4 (compilation-error-screen-columns, compilation-filter-start): Doc fixes.
5 5
6 * vc/log-view.el (log-view-toggle-entry-display): 6 * vc/log-view.el (log-view-toggle-entry-display):
7 * vc/vc.el (vc-merge, vc-pull): Doc fixes. 7 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 6c48eee7f4b..c1d8f9db23f 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -74,8 +74,8 @@ If Emacs lacks asynchronous process support, this hook is run
74after `call-process' inserts the grep output into the buffer.") 74after `call-process' inserts the grep output into the buffer.")
75 75
76(defvar compilation-filter-start nil 76(defvar compilation-filter-start nil
77 "Start of the text inserted by `compilation-filter'. 77 "Position of the start of the text inserted by `compilation-filter'.
78This is bound to a buffer position before running `compilation-filter-hook'.") 78This is bound before running `compilation-filter-hook'.")
79 79
80(defvar compilation-first-column 1 80(defvar compilation-first-column 1
81 "*This is how compilers number the first column, usually 1 or 0. 81 "*This is how compilers number the first column, usually 1 or 0.