mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-03 11:33:37 +00:00
ispell.el (ispell-add-per-file-word-list): Use `concat' to create string for insertion.
Fixes: debbugs:8579
This commit is contained in:
parent
5767d190ca
commit
5192af462f
@ -1,3 +1,8 @@
|
||||
2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
|
||||
|
||||
* textmodes/ispell.el (ispell-add-per-file-word-list):
|
||||
Use `concat' for string.
|
||||
|
||||
2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
|
||||
|
@ -3916,7 +3916,7 @@ Both should not be used to define a buffer-local dictionary."
|
||||
(open-line 1)
|
||||
(unless found (newline))
|
||||
(insert (if comment-start
|
||||
(progn
|
||||
(concat
|
||||
(if (fboundp 'comment-padright)
|
||||
;; Try and use the proper comment marker,
|
||||
;; e.g. ";;" rather than ";".
|
||||
|
Loading…
Reference in New Issue
Block a user