[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] "@" is not recognized as part of defun name for emacs-lisp
From: |
Jérôme Marant |
Subject: |
[PATCH] "@" is not recognized as part of defun name for emacs-lisp |
Date: |
Thu, 10 Mar 2005 22:38:38 +0100 |
User-agent: |
Gnus/5.1007 (Gnus v5.10.7) Emacs/21.3 (gnu/linux) |
Hi,
It is seem that @ is a valid character in function names (although
I did not see any place in the Lisp Ref where valid characters are mentioned.
I guess everything but parentheses would be the answer?)
Lisp-mode does not properly highlight function names containing
such a character.
This patch is contributed by Joe Edmonds <joe-bugs-debian-org@elem.com>
--- /usr/share/emacs/21.3/lisp/emacs-lisp/lisp-mode.el 2003-10-31
10:30:36.000000000 -0800
+++ lisp-mode.el 2004-03-19 10:11:23.000000000 -0800
@@ -143,7 +143,7 @@
(setq font-lock-defaults
'((lisp-font-lock-keywords
lisp-font-lock-keywords-1 lisp-font-lock-keywords-2)
- nil nil (("+-*/.<>=!?$%_&~^:" . "w")) beginning-of-defun
+ nil nil (("+-*/.<>=!?$%_&~^:@" . "w")) beginning-of-defun
(font-lock-mark-block-function . mark-defun))))
(defun lisp-outline-level ()
--
Jérôme Marant
- [PATCH] "@" is not recognized as part of defun name for emacs-lisp,
Jérôme Marant <=