]> git.eshelyaron.com Git - emacs.git/commitdiff
; Delete not-useful comments referring to Emacs 19.
authorStefan Kangas <stefankangas@gmail.com>
Fri, 19 Aug 2022 15:59:13 +0000 (17:59 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Fri, 19 Aug 2022 16:05:51 +0000 (18:05 +0200)
lisp/calc/calc-yank.el
lisp/emacs-lisp/checkdoc.el
lisp/emacs-lisp/edebug.el
lisp/emacs-lisp/elp.el
lisp/emulation/viper-init.el
lisp/progmodes/icon.el
lisp/vcursor.el

index 71cc68b0c202fe886ee0432cd6efcfdd29ca3ae0..d4594370cae47f606971eaafb81355511d356f5c 100644 (file)
 
 ;; This function uses calc-last-kill if possible to get an exact result,
 ;; otherwise it just parses the yanked string.
-;; Modified to use Emacs 19 extended concept of kill-ring. -- daveg 12/15/96
 ;;;###autoload
 (defun calc-yank-internal (radix thing-raw)
   "Internal common implementation for yank functions.
index 04ead562f2faae97888ff7c101413342f8396d2b..a5ab3a50ff290da3a90b806aeb7e06da8ffd4b62 100644 (file)
@@ -2232,7 +2232,6 @@ nil."
        (progn
           (ispell-set-spellchecker-params)    ; Initialize variables and dict alists.
           (ispell-accept-buffer-local-defs)   ; Use the correct dictionary.
-         ;; This code copied in part from ispell.el Emacs 19.34
          (dolist (w checkdoc-ispell-lisp-words)
            (process-send-string ispell-process (concat "@" w "\n"))))
       (error (setq checkdoc-spellcheck-documentation-flag nil)))))
index dff16df00297a894606ea478f7f48aaf4b80cb13..9de8999fdfdf7a6967a4cf2561faaef23f5af12e 100644 (file)
@@ -2861,7 +2861,6 @@ See `edebug-behavior-alist' for implementations.")
              (this-command this-command)
              (current-prefix-arg nil)
 
-             ;; More for Emacs 19
              (last-input-event nil)
              (last-command-event nil)
              (last-event-frame nil)
index 03c5b94e3b4fa77e0409d47ae1e698ea628ac4ca..cbf38e7dd881c5d10cb04a642007962f14e4163c 100644 (file)
 ;; provide the functionality or interface that I wanted, so I wrote
 ;; this.
 
-;; Unlike previous profilers, elp uses Emacs 19's built-in function
+;; Unlike previous profilers, elp uses the built-in function
 ;; current-time to return interval times.  This obviates the need for
 ;; both an external C program and Emacs processes to communicate with
 ;; such a program, and thus simplifies the package as a whole.
index df2487a4477cf06eefc3254ce3844b4033af7079..7296041ae8fa7e5f8969c6d38130158aef5fdc7f 100644 (file)
@@ -867,8 +867,8 @@ Should be set in `viper-custom-file-name'."
 (defvar-local viper-minibuffer-overlay nil)
 (put 'viper-minibuffer-overlay 'permanent-local t)
 
-;; Hook, specific to Viper, which is run just *before* exiting the minibuffer.
-;; This is needed because beginning with Emacs 19.26, the standard
+;; Hook, specific to Viper, which is run just *before* exiting the
+;; minibuffer.  This is needed because, the standard
 ;; `minibuffer-exit-hook' is run *after* exiting the minibuffer
 (defvar viper-minibuffer-exit-hook nil)
 
index ec281f3a4964e7bc5277448215e95db2ef7a12be..2da0fb16773b32ef4a70b6193b70461a976358a8 100644 (file)
@@ -163,8 +163,6 @@ with no args, if that value is non-nil."
               '((icon-font-lock-keywords
                  icon-font-lock-keywords-1 icon-font-lock-keywords-2)
                 nil nil ((?_ . "w")) beginning-of-defun
-                ;; Obsoleted by Emacs 19.35 parse-partial-sexp's COMMENTSTOP.
-                ;;(font-lock-comment-start-regexp . "#")
                 (font-lock-mark-block-function . mark-defun)))
   ;; imenu support
   (setq-local imenu-generic-expression icon-imenu-generic-expression)
index a54227c1bce6242f4ec0fe508863c0cf60d90519..e7dd1ba7156c5fab8fdcad6a4e2637e925fcba1a 100644 (file)
 ;; =======================
 ;;
 ;; If Emacs has set the variable window-system to nil, vcursor will
-;; assume that overlays cannot be displayed in a different face,
-;; and will instead use a string (the variable vcursor-string, by
-;; default "**>") to show its position.  This was first implemented
-;; in Emacs 19.29.  Unlike the old-fashioned overlay arrow (as used
-;; by debuggers), this appears between existing text, which can
+;; assume that overlays cannot be displayed in a different face, and
+;; will instead use a string (the variable vcursor-string, by default "**>")
+;; to show its position.  Unlike the old-fashioned overlay arrow (as
+;; used by debuggers), this appears between existing text, which can
 ;; make it hard to read if you're not used to it.  (This seemed the
 ;; better option here.)  This means moving the vcursor up and down is
 ;; a very efficient way of locating it!