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
7dfb000f
Commit
7dfb000f
authored
May 04, 2001
by
Stefan Monnier
Browse files
(diff-nonexistent-face, diff-font-lock-keywords):
Typo `nonexistant' -> `nonexistent'.
parent
e8918aee
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
7 deletions
+12
-7
lisp/ChangeLog
lisp/ChangeLog
+8
-3
lisp/diff-mode.el
lisp/diff-mode.el
+4
-4
No files found.
lisp/ChangeLog
View file @
7dfb000f
2001-05-04 Stefan Monnier <monnier@cs.yale.edu>
* diff-mode.el (diff-nonexistent-face, diff-font-lock-keywords):
Typo `nonexistant' -> `nonexistent'.
2001-05-04 Martin Stjernholm <bug-cc-mode@gnu.org>
* cc-cmds.el (c-electric-delete, c-electric-delete-forward):
Split
`c-electric-delete' into two functions where
* cc-cmds.el (c-electric-delete, c-electric-delete-forward):
Split
`c-electric-delete' into two functions where
`c-electric-delete-forward' always deletes forward and
`c-electric-delete' only contains the code necessary for XEmacs to
choose between backward and forward deletion.
* cc-mode.el: `c-electric-delete-forward' is now bound to C-d to
get the electric behavior on that key too.
(c-fill-paragraph): Fixed bogus direct use of
...
...
lisp/diff-mode.el
View file @
7dfb000f
...
...
@@ -249,11 +249,11 @@ when editing big diffs)."
:group
'diff-mode
)
(
defvar
diff-context-face
'diff-context-face
)
(
defface
diff-nonexist
a
nt-face
(
defface
diff-nonexist
e
nt-face
'
((
t
(
:inherit
diff-file-header-face
)))
"`diff-mode' face used to highlight nonexist
a
nt files in recursive diffs."
"`diff-mode' face used to highlight nonexist
e
nt files in recursive diffs."
:group
'diff-mode
)
(
defvar
diff-nonexist
a
nt-face
'diff-nonexist
a
nt-face
)
(
defvar
diff-nonexist
e
nt-face
'diff-nonexist
e
nt-face
)
(
defvar
diff-font-lock-keywords
'
((
"^\\(@@ -[0-9,]+ \\+[0-9,]+ @@\\)\\(.*\\)$"
;unified
...
...
@@ -271,7 +271,7 @@ when editing big diffs)."
(
"^[+>].*\n"
.
diff-added-face
)
(
"^[-<].*\n"
.
diff-removed-face
)
(
"^Index: \\(.+\\).*\n"
(
0
diff-header-face
)
(
1
diff-index-face
prepend
))
(
"^Only in .*\n"
.
diff-nonexist
a
nt-face
)
(
"^Only in .*\n"
.
diff-nonexist
e
nt-face
)
(
"^#.*"
.
font-lock-string-face
)
(
"^[^-=+*!<>].*\n"
.
diff-context-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