diff options
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index a955b8131d6..6db3b614d6d 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -577,7 +577,7 @@ one is kept." (setq tail (cdr tail)))))) list) -;; See https://lists.gnu.org/archive/html/emacs-devel/2013-05/msg00204.html +;; See https://lists.gnu.org/r/emacs-devel/2013-05/msg00204.html (defun delete-consecutive-dups (list &optional circular) "Destructively remove `equal' consecutive duplicates from LIST. First and last elements are considered consecutive if CIRCULAR is @@ -2430,7 +2430,7 @@ in milliseconds; this was useful when Emacs was built without floating point support." (declare (advertised-calling-convention (seconds &optional nodisp) "22.1")) ;; This used to be implemented in C until the following discussion: - ;; https://lists.gnu.org/archive/html/emacs-devel/2006-07/msg00401.html + ;; https://lists.gnu.org/r/emacs-devel/2006-07/msg00401.html ;; Then it was moved here using an implementation based on an idle timer, ;; which was then replaced by the use of read-event. (if (numberp nodisp) @@ -2469,7 +2469,7 @@ floating point support." (read-event nil t seconds)))) (or (null read) (progn - ;; https://lists.gnu.org/archive/html/emacs-devel/2006-10/msg00394.html + ;; https://lists.gnu.org/r/emacs-devel/2006-10/msg00394.html ;; We want `read' appear in the next command's this-command-event ;; but not in the current one. ;; By pushing (cons t read), we indicate that `read' has not @@ -3102,7 +3102,7 @@ Do nothing if FACE is nil." (put-text-property start end 'face face))) ;; This removes `mouse-face' properties in *Help* buffer buttons: -;; https://lists.gnu.org/archive/html/emacs-devel/2002-04/msg00648.html +;; https://lists.gnu.org/r/emacs-devel/2002-04/msg00648.html (defun yank-handle-category-property (category start end) "Apply property category CATEGORY's properties between START and END." (when category @@ -4217,7 +4217,7 @@ Used from `delayed-warnings-hook' (which see)." (setq delayed-warnings-list (nreverse collapsed)))) ;; At present this is only used for Emacs internals. -;; Ref https://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00085.html +;; Ref https://lists.gnu.org/r/emacs-devel/2012-02/msg00085.html (defvar delayed-warnings-hook '(collapse-delayed-warnings display-delayed-warnings) "Normal hook run to process and display delayed warnings. @@ -5227,7 +5227,7 @@ or \"gnus-article-toto-\".") ;; The following statement ought to be in print.c, but `provide' can't ;; be used there. -;; https://lists.gnu.org/archive/html/emacs-devel/2009-08/msg00236.html +;; https://lists.gnu.org/r/emacs-devel/2009-08/msg00236.html (when (hash-table-p (car (read-from-string (prin1-to-string (make-hash-table))))) (provide 'hashtable-print-readable)) |