]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove stale comments
authorStefan Kangas <stefankangas@gmail.com>
Sat, 16 May 2020 15:48:36 +0000 (17:48 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Sat, 16 May 2020 15:48:36 +0000 (17:48 +0200)
* lisp/printing.el (pr-create-interface):
* lisp/progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
Remove old comments about Emacs 21/22 compatibility.

lisp/printing.el
lisp/progmodes/ebnf2ps.el

index 181092ee9997b5072cd33f1fc6201cf68e16f12e..b8879befae3bd616ec2e57209c4cfa4aaf75a850 100644 (file)
@@ -5622,8 +5622,6 @@ COMMAND.exe, COMMAND.bat and COMMAND.com in this order."
   ;; header
   (let ((versions (concat "printing v" pr-version
                          "    ps-print v" ps-print-version)))
-    ;; to keep compatibility with Emacs 20 & 21:
-    ;; DO NOT REPLACE `?\ ' BY `?\s'
     (widget-insert (make-string (- 79 (length versions)) ?\ ) versions))
   (pr-insert-italic "\nCurrent Directory : " 1)
   (pr-insert-italic default-directory)
index 28e7667cda14ac75ef7b4490caef32a2f3e7cb0c..08cf802bcbeceb5700f737661de7e5ff2864bacf 100644 (file)
@@ -4975,8 +4975,6 @@ killed after process termination."
 (defun ebnf-eps-filename (str)
   (let* ((len  (length str))
         (stri 0)
-        ;; to keep compatibility with Emacs 20 & 21:
-        ;; DO NOT REPLACE `?\ ' BY `?\s'
         (new  (make-string len ?\ )))
     (while (< stri len)
       (aset new stri (aref ebnf-map-name (aref str stri)))
@@ -5993,8 +5991,6 @@ killed after process termination."
 (defun ebnf-trim-right (str)
   (let* ((len   (1- (length str)))
         (index len))
-    ;; to keep compatibility with Emacs 20 & 21:
-    ;; DO NOT REPLACE `?\ ' BY `?\s'
     (while (and (> index 0) (= (aref str index) ?\ ))
       (setq index (1- index)))
     (if (= index len)