Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e309e2a5
Commit
e309e2a5
authored
Jun 27, 2012
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lisp/textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
parent
2014308a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
lisp/ChangeLog
lisp/ChangeLog
+2
-0
lisp/textmodes/rst.el
lisp/textmodes/rst.el
+3
-2
No files found.
lisp/ChangeLog
View file @
e309e2a5
2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
* textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
* emacs-lisp/cl.el (flet): Mark obsolete.
* emacs-lisp/cl-macs.el (cl-flet*): New macro.
* vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
...
...
lisp/textmodes/rst.el
View file @
e309e2a5
...
...
@@ -3416,10 +3416,11 @@ This color is used as background for section title text on level
(
defcustom
rst-adornment-faces-alist
;; FIXME LEVEL-FACE: Must be redone if `rst-level-face-max' is changed
(
let
((
alist
(
copy-
list
'
((
t
.
rst-transition
)
(
nil
.
rst-adornment
))))
(
let
((
alist
(
copy-
sequence
'
((
t
.
rst-transition
)
(
nil
.
rst-adornment
))))
(
i
1
))
(
while
(
<=
i
rst-level-face-max
)
;; FIXME: why not `push'?
(
nconc
alist
(
list
(
cons
i
(
intern
(
format
"rst-level-%d-face"
i
)))))
(
setq
i
(
1+
i
)))
alist
)
...
...
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