]> git.eshelyaron.com Git - emacs.git/commitdiff
(scheme-mode-syntax-table): Use prefix syntax for ', `, comma, @ and #.
authorRichard M. Stallman <rms@gnu.org>
Thu, 24 Apr 2003 01:41:45 +0000 (01:41 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 24 Apr 2003 01:41:45 +0000 (01:41 +0000)
lisp/ChangeLog
lisp/progmodes/scheme.el

index 55030147fb374b72e5888b40a471158914267bb6..94e15aa25b8a5aa858b17185b2bfd6614e1a153a 100644 (file)
@@ -1,3 +1,11 @@
+2003-04-23  Richard M. Stallman  <rms@gnu.org>
+
+       * progmodes/scheme.el (scheme-mode-syntax-table):
+       Use prefix syntax for ', `, comma, @ and #.
+
+       * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
+       Give @ prefix syntax.
+
 2003-04-23  Andre Spiegel  <spiegel@gnu.org>
 
        * vc-cvs.el (vc-cvs-stay-local): Keep the old default.  Simplify
        strings broken over lines.
        (fortran-fill): Handle long strings that must be broken.
 
-2003-04-13  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
-       From Michael Albinus <Michael.Albinus@alcatel.de>.
+2003-04-13  Michael Albinus  <Michael.Albinus@alcatel.de>  (tiny change)
 
        * net/ange-ftp.el (ange-ftp-expand-symlink): If result of
        expansion is a symlink, expand again.
index 9824f5c3e6c2e8e4efb424c303cb80ba0fe9fc22..588bab138e8f99ad8fa64bdfb041142cc6eab4e3 100644 (file)
     (modify-syntax-entry ?\) ")(  " st)
     (modify-syntax-entry ?\; "<   " st)
     (modify-syntax-entry ?\" "\"    " st)
-    (modify-syntax-entry ?' "  p" st)
-    (modify-syntax-entry ?` "  p" st)
+    (modify-syntax-entry ?' "'   " st)
+    (modify-syntax-entry ?` "'   " st)
 
     ;; Special characters
-    (modify-syntax-entry ?, "_ p" st)
-    (modify-syntax-entry ?@ "_ p" st)
-    (modify-syntax-entry ?# "_ p14" st)
+    (modify-syntax-entry ?, "'   " st)
+    (modify-syntax-entry ?@ "'   " st)
+    (modify-syntax-entry ?# "'  14" st)
     (modify-syntax-entry ?\\ "\\   " st)
     st))
 \f