]> git.eshelyaron.com Git - emacs.git/commitdiff
change all buffer-substring to buffer-substring-no-properties.
authorSimon Marshall <simon@gnu.org>
Mon, 28 Apr 1997 11:25:26 +0000 (11:25 +0000)
committerSimon Marshall <simon@gnu.org>
Mon, 28 Apr 1997 11:25:26 +0000 (11:25 +0000)
lisp/ps-print.el

index 864c087086f5f1473aebe3c1d88aaf7fcfe73183..75c858fc5cd1d1b37faee7dd383fb9ce24cc2e55 100644 (file)
@@ -2335,7 +2335,7 @@ EndDSCPage\n"))
 (defun ps-basic-plot-string (from to &optional bg-color)
   (let* ((wrappoint (ps-find-wrappoint from to ps-avg-char-width))
         (to (car wrappoint))
-        (string (buffer-substring from to)))
+        (string (buffer-substring-no-properties from to)))
     (ps-output-string string)
     (ps-output " S\n")
     wrappoint))
@@ -2858,7 +2858,7 @@ EndDSCPage\n"))
   (save-excursion
     (goto-char (point-min))
     (if (re-search-forward "^Subject:[ \t]+\\(.*\\)$" nil t)
-       (buffer-substring (match-beginning 1) (match-end 1))
+       (buffer-substring-no-properties (match-beginning 1) (match-end 1))
       "Subject ???")))
 
 ;; Look in an article or mail message for the From: line.  Sorta-kinda
@@ -2868,7 +2868,7 @@ EndDSCPage\n"))
   (save-excursion
     (goto-char (point-min))
     (if (re-search-forward "^From:[ \t]+\\(.*\\)$" nil t)
-       (let ((fromstring (buffer-substring (match-beginning 1) (match-end 1))))
+       (let ((fromstring (buffer-substring-no-properties (match-beginning 1) (match-end 1))))
          (cond
 
           ;; Try first to match addresses that look like
@@ -2941,7 +2941,7 @@ EndDSCPage\n"))
   (save-excursion
     (goto-char (point-min))
     (if (re-search-forward "File:[ \t]+\\([^, \t\n]*\\)" nil t)
-       (buffer-substring (match-beginning 1) (match-end 1))
+       (buffer-substring-no-properties (match-beginning 1) (match-end 1))
       "File ???")))
 
 ;; Look in an article or mail message for the Subject: line.  To be
@@ -2950,7 +2950,7 @@ EndDSCPage\n"))
   (save-excursion
     (goto-char (point-min))
     (if (re-search-forward "Node:[ \t]+\\([^,\t\n]*\\)" nil t)
-       (buffer-substring (match-beginning 1) (match-end 1))
+       (buffer-substring-no-properties (match-beginning 1) (match-end 1))
       "Node ???")))
 
 (defun ps-info-mode-hook ()