Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
bc071f64
Commit
bc071f64
authored
Jun 25, 2004
by
Sam Steingold
Browse files
(change-log-font-lock-keywords): Support
Common Lisp function names `(setf symbol)'.
parent
94939b84
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/add-log.el
lisp/add-log.el
+7
-4
No files found.
lisp/ChangeLog
View file @
bc071f64
2004-06-25 Sam Steingold <sds@gnu.org>
* add-log.el (change-log-font-lock-keywords): Support Common Lisp
function names `(setf symbol)'.
2004-06-24 Richard M. Stallman <rms@gnu.org>
* replace.el (query-replace-read-args): Swallow space after \,SYMBOL.
...
...
lisp/add-log.el
View file @
bc071f64
...
...
@@ -230,13 +230,16 @@ Note: The search is conducted only within 10%, at the beginning of the file."
;; Possibly further names in a list:
(
"\\=, \\([^ ,:([\n]+\\)"
nil
nil
(
1
'change-log-file-face
))
;; Possibly a parenthesized list of names:
(
"\\= (\\([^) ,\n]+\\)"
nil
nil
(
1
'change-log-list-face
))
(
"\\=, *\\([^) ,\n]+\\)"
nil
nil
(
1
'change-log-list-face
)))
(
"\\= (\\([^() ,\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)"
nil
nil
(
1
'change-log-list-face
))
(
"\\=, *\\([^() ,\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)"
nil
nil
(
1
'change-log-list-face
)))
;;
;; Function or variable names.
(
"^\t(\\([^) ,\n]+\\)"
(
"^\t(\\([^
(
) ,\n]+\\
|(\\(setf\\|SETF\\) [^() ,\n]+)\\
)"
(
1
'change-log-list-face
)
(
"\\=, *\\([^) ,\n]+\\)"
nil
nil
(
1
'change-log-list-face
)))
(
"\\=, *\\([^() ,\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)"
nil
nil
(
1
'change-log-list-face
)))
;;
;; Conditionals.
(
"\\[!?\\([^]\n]+\\)\\]\\(:\\| (\\)"
(
1
'change-log-conditionals-face
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment