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
51d5b4ec
Commit
51d5b4ec
authored
May 25, 2011
by
Julien Danjou
Browse files
* textmodes/rst.el (rst-define-level-faces): Do not define face
symbol if it is already defined.
parent
497c74cd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
5 deletions
+11
-5
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/textmodes/rst.el
lisp/textmodes/rst.el
+6
-5
No files found.
lisp/ChangeLog
View file @
51d5b4ec
2011-05-25 Julien Danjou <julien@danjou.info>
* textmodes/rst.el (rst-define-level-faces): Do not define face
symbol if it is already defined.
2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
* play/5x5.el (5x5-new-game, 5x5-randomize):
...
...
lisp/textmodes/rst.el
View file @
51d5b4ec
...
...
@@ -2800,11 +2800,12 @@ details check the Rst Faces Defaults group."
rst-level-face-base-color
(
+
(
*
(
1-
i
)
rst-level-face-step-light
)
rst-level-face-base-light
))))
(
make-empty-face
sym
)
(
set-face-doc-string
sym
doc
)
(
set-face-background
sym
col
)
(
set
sym
sym
)
(
setq
i
(
1+
i
))))))
(
unless
(
boundp
sym
)
(
make-empty-face
sym
)
(
set-face-doc-string
sym
doc
)
(
set-face-background
sym
col
)
(
set
sym
sym
))
(
setq
i
(
1+
i
))))))
(
rst-define-level-faces
)
...
...
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