diff options
author | Adam Chlipala <adamc@csail.mit.edu> | 2016-07-15 10:26:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-15 10:26:34 -0400 |
commit | 885358adcc03e0b4b2599c3d1072c0ac169ed894 (patch) | |
tree | 7a412f7a9e20a1303bc431ef26fbf57f7c22c7a2 | |
parent | 10f0c953a1de12f375d694a0ee0816f7dffa4483 (diff) | |
parent | 021c8f7e0a1776566ec5d3d059136ba03f9ac3db (diff) |
Merge pull request #33 from tuncer/emacs-final-newline
urweb-mode: do not configure require-final-newline
-rw-r--r-- | src/elisp/urweb-mode.el | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/elisp/urweb-mode.el b/src/elisp/urweb-mode.el index bc71a052..d1eec2a1 100644 --- a/src/elisp/urweb-mode.el +++ b/src/elisp/urweb-mode.el @@ -395,7 +395,6 @@ This mode runs `urweb-mode-hook' just before exiting. ;; Treat paragraph-separators in comments as paragraph-separators. (set (make-local-variable 'paragraph-separate) (concat "\\([ \t]*\\*)?\\)?\\(" paragraph-separate "\\)")) - (set (make-local-variable 'require-final-newline) t) ;; forward-sexp-function is an experimental variable in my hacked Emacs. (set (make-local-variable 'forward-sexp-function) 'urweb-user-forward-sexp) ;; For XEmacs |