# HG changeset patch # User Richard M. Stallman # Date 817323677 0 # Node ID acde2327c000e5c7c05a5c0de42401e10b371e9e # Parent 0923c642e3249f1f5641613cca661771dbebecdd (build-mail-aliases): Use buffer-substring-no-properties not buffer-substring. diff -r 0923c642e324 -r acde2327c000 lisp/mail/mailalias.el --- a/lisp/mail/mailalias.el Sat Nov 25 05:49:37 1995 +0000 +++ b/lisp/mail/mailalias.el Sat Nov 25 18:21:17 1995 +0000 @@ -120,7 +120,8 @@ (cond ((get-file-buffer file) (insert (save-excursion (set-buffer (get-file-buffer file)) - (buffer-substring (point-min) (point-max))))) + (buffer-substring-no-properties + (point-min) (point-max))))) ((file-exists-p file) (insert-file-contents file)) ((file-exists-p (setq file (concat "~/" file))) (insert-file-contents file)) @@ -139,8 +140,8 @@ ;; handle `source' directives -- Eddy/1994/May/25 (cond ((re-search-forward "^source[ \t]+" nil t) (re-search-forward "\\S-+") - (setq file - (buffer-substring (match-beginning 0) (match-end 0))) + (setq file (buffer-substring-no-properties + (match-beginning 0) (match-end 0))) (beginning-of-line) (insert "# ") ; to ensure we don't re-process this file (beginning-of-line)) @@ -153,7 +154,7 @@ (end-of-line) (define-mail-alias name - (buffer-substring start (point)) + (buffer-substring-no-properties start (point)) t))) mail-aliases) (if buffer (kill-buffer buffer))