emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r107206: Doc fixes for compile.el


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r107206: Doc fixes for compile.el
Date: Wed, 08 Feb 2012 23:24:30 -0800
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 107206
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2012-02-08 23:24:30 -0800
message:
  Doc fixes for compile.el
  
  * lisp/progmodes/compile.el (compilation-first-column)
  (compilation-error-screen-columns): Doc fixes.
  * etc/NEWS: Related markup.
modified:
  etc/NEWS
  lisp/ChangeLog
  lisp/progmodes/compile.el
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2012-02-09 07:15:54 +0000
+++ b/etc/NEWS  2012-02-09 07:24:30 +0000
@@ -672,6 +672,7 @@
 inserted by the compilation filter function, when calling
 compilation-filter-hook.
 
+---
 *** `compilation-error-screen-columns' and `compilation-first-column'
 are obeyed in the editing buffer.  So programming language modes can
 set them, whereas previously only the value in the *compilation* buffer

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-02-09 06:25:18 +0000
+++ b/lisp/ChangeLog    2012-02-09 07:24:30 +0000
@@ -1,5 +1,8 @@
 2012-02-09  Glenn Morris  <address@hidden>
 
+       * progmodes/compile.el (compilation-first-column)
+       (compilation-error-screen-columns): Doc fixes.
+
        * vc/log-view.el (log-view-toggle-entry-display):
        * vc/vc.el (vc-merge, vc-pull): Doc fixes.
 

=== modified file 'lisp/progmodes/compile.el'
--- a/lisp/progmodes/compile.el 2012-02-01 07:32:21 +0000
+++ b/lisp/progmodes/compile.el 2012-02-09 07:24:30 +0000
@@ -78,7 +78,10 @@
 This is bound to a buffer position before running `compilation-filter-hook'.")
 
 (defvar compilation-first-column 1
-  "*This is how compilers number the first column, usually 1 or 0.")
+  "*This is how compilers number the first column, usually 1 or 0.
+If this is buffer-local in the destination buffer, Emacs obeys
+that value, otherwise it uses the value in the *compilation*
+buffer.  This enables a major-mode to specify its own value.")
 
 (defvar compilation-parse-errors-filename-function nil
   "Function to call to post-process filenames while parsing error messages.
@@ -547,7 +550,10 @@
 each character occupying one column.
 The default is to use screen columns, which requires that the compilation
 program and Emacs agree about the display width of the characters,
-especially the TAB character."
+especially the TAB character.
+If this is buffer-local in the destination buffer, Emacs obeys
+that value, otherwise it uses the value in the *compilation*
+buffer.  This enables a major-mode to specify its own value."
   :type 'boolean
   :group 'compilation
   :version "20.4")


reply via email to

[Prev in Thread] Current Thread [Next in Thread]