1
0
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:
Agustín Martín 2011-05-03 16:11:39 +02:00
parent 5767d190ca
commit 5192af462f
2 changed files with 6 additions and 1 deletions

View File

@ -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):

View File

@ -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 ";".