diff options
| author | Lars Ingebrigtsen <larsi@gnus.org> | 2016-03-04 11:52:26 +0000 |
|---|---|---|
| committer | Lars Ingebrigtsen <larsi@gnus.org> | 2016-03-04 11:52:26 +0000 |
| commit | ca4e30058eba0531f38fff75f14734acffab84ea (patch) | |
| tree | 7fc80e79430de4b419c901237b04a942525e0c75 /lisp | |
| parent | 5671c32c133cc745b908abf3a6891bd8f6d658b5 (diff) | |
| download | emacs-ca4e30058eba0531f38fff75f14734acffab84ea.tar.gz | |
Fix insertion of edited servers in the dribble file
* lisp/gnus/gnus-srvr.el (gnus-server-update-server): Don't
insert explicit newlines, because they're quoted (bug#22903).
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/gnus/gnus-srvr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-srvr.el b/lisp/gnus/gnus-srvr.el index 35a38826a2c..30c7debc8e5 100644 --- a/lisp/gnus/gnus-srvr.el +++ b/lisp/gnus/gnus-srvr.el @@ -387,7 +387,7 @@ The following commands are available: (when entry (gnus-dribble-enter (concat "(gnus-server-set-info \"" server "\" '" - (gnus-prin1-to-string (cdr entry)) ")\n") + (gnus-prin1-to-string (cdr entry)) ")") (concat "^(gnus-server-set-info \"" (regexp-quote server) "\""))) (when (or entry oentry) ;; Buffer may be narrowed. |
