summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Brand <michael.ch.brand@gmail.com>2012-08-10 06:40:10 +0200
committerBastien Guerry <bzg@altern.org>2012-08-10 09:24:19 +0200
commit1b042ea7099ba915ccb76812c7b0ef8aab87890f (patch)
tree7b42fb83dca059aa5ee619d6279f35489d7b25b1
parentc49f74c85abd41d8e01bc07049b317652298907e (diff)
downloadorg-mode-1b042ea7099ba915ccb76812c7b0ef8aab87890f.tar.gz
Directory local variables: Set sentence-end-double-space to t
* .dir-locals.el: Add comments and set `sentence-end-double-space' to t. * .dir-settings.el: Add comments and set `sentence-end-double-space' to t.
-rw-r--r--.dir-locals.el9
-rw-r--r--.dir-settings.el9
2 files changed, 14 insertions, 4 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index 7094cb9..05d50f6 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -1,4 +1,9 @@
+;; - keep in sync dir-locals.el (for Emacs >= 24) with .dir-settings.el
+;; (for Emacs < 24)
+;; - don't use a symbolic link to prevent problems on cygwin
+;; distributions (commit 971b9eeacd38959439ddaa7c650430cc2dcb673e)
+
((nil . ((indent-tabs-mode . t)
(tab-width . 8)
- (fill-column . 70))))
-
+ (fill-column . 70)
+ (sentence-end-double-space . t))))
diff --git a/.dir-settings.el b/.dir-settings.el
index 7094cb9..05d50f6 100644
--- a/.dir-settings.el
+++ b/.dir-settings.el
@@ -1,4 +1,9 @@
+;; - keep in sync dir-locals.el (for Emacs >= 24) with .dir-settings.el
+;; (for Emacs < 24)
+;; - don't use a symbolic link to prevent problems on cygwin
+;; distributions (commit 971b9eeacd38959439ddaa7c650430cc2dcb673e)
+
((nil . ((indent-tabs-mode . t)
(tab-width . 8)
- (fill-column . 70))))
-
+ (fill-column . 70)
+ (sentence-end-double-space . t))))