diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-06-18 13:23:57 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-06-18 13:23:57 +0000 |
commit | eedf8416e032b100fdb18bc933c29beea244a524 (patch) | |
tree | 15a977390a511c7f54f0a0f183895ef454d9b5e5 | |
parent | 656828cf6eb6ba14fe15c896edb2780cfa474cea (diff) | |
download | emacs-eedf8416e032b100fdb18bc933c29beea244a524.tar.gz emacs-eedf8416e032b100fdb18bc933c29beea244a524.tar.bz2 emacs-eedf8416e032b100fdb18bc933c29beea244a524.zip |
(set-rmail-inbox-list): Use insert-before-markers.
-rw-r--r-- | lisp/mail/rmailmsc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/rmailmsc.el b/lisp/mail/rmailmsc.el index 0f850708639..d00510e4254 100644 --- a/lisp/mail/rmailmsc.el +++ b/lisp/mail/rmailmsc.el @@ -46,7 +46,7 @@ If FILE-NAME is empty, remove any inbox list." (progn (forward-line 1) (point)))) (if (not (string= file-name "")) - (insert "Mail: " file-name "\n")))))) + (insert-before-markers "Mail: " file-name "\n")))))) (setq rmail-inbox-list (rmail-parse-file-inboxes)) (rmail-show-message rmail-current-message)) |