]> git.eshelyaron.com Git - emacs.git/commitdiff
(emacs-lisp-mode-syntax-table): Don't give ^M comment-end syntax.
authorRichard M. Stallman <rms@gnu.org>
Fri, 15 Jul 2005 17:37:27 +0000 (17:37 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 15 Jul 2005 17:37:27 +0000 (17:37 +0000)
lisp/emacs-lisp/lisp-mode.el

index 8469aec1362e58786e4fdc31892be7a88c4bb14d..88e6319709b9d0e8438524542fb9143a198f1396 100644 (file)
@@ -54,8 +54,9 @@
       (modify-syntax-entry ?\t "    " table)
       (modify-syntax-entry ?\f "    " table)
       (modify-syntax-entry ?\n ">   " table)
-      ;; Give CR the same syntax as newline, for selective-display.
-      (modify-syntax-entry ?\^m ">   " table)
+;;; This is probably obsolete since nowadays such features use overlays.
+;;;      ;; Give CR the same syntax as newline, for selective-display.
+;;;      (modify-syntax-entry ?\^m ">   " table)
       (modify-syntax-entry ?\; "<   " table)
       (modify-syntax-entry ?` "'   " table)
       (modify-syntax-entry ?' "'   " table)