[Rprotobuf-commits] r651 - pkg/src

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Mon Dec 30 22:49:05 CET 2013


Author: murray
Date: 2013-12-30 22:49:04 +0100 (Mon, 30 Dec 2013)
New Revision: 651

Modified:
   pkg/src/.dir-locals.el
Log:
Add comments to the docuementation for directory level variables and
also the FoldingMode.

Also, turn on show-trailing-whitespace so that errant whitespace at
end of line is highlighted so it can be seen/removed before checkin.



Modified: pkg/src/.dir-locals.el
===================================================================
--- pkg/src/.dir-locals.el	2013-12-30 21:44:07 UTC (rev 650)
+++ pkg/src/.dir-locals.el	2013-12-30 21:49:04 UTC (rev 651)
@@ -1,6 +1,14 @@
+; Emacs customization settings to apply to every file in this directory.
+; See http://www.emacswiki.org/emacs/DirectoryVariables
+;
+; Note some of the files include '{{{' and '}}}' annotations to be used
+; with Folding Mode: http://www.emacswiki.org/emacs/FoldingMode
 ((nil . ((indent-tabs-mode . nil)
-	 (tab-width . 4)))
+         (tab-width . 4)
+         (show-trailing-whitespace . t)))
  (c-mode . ((c-indent-level . 4)
-	    (c-basic-offset . 4)))
+            (c-basic-offset . 4)
+            (show-trailing-whitespace . t)))
  (c++-mode . ((c-indent-level . 4)
-	      (c-basic-offset . 4))))
+              (c-basic-offset . 4)
+              (show-trailing-whitespace . t))))



More information about the Rprotobuf-commits mailing list