diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2017-11-25 22:45:41 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2017-11-25 22:48:12 -0800 |
commit | a89f0b6f33f9eb8910a1fceda9028d76ef50b05d (patch) | |
tree | 7055882872b7cad587e5d5e9ac706056f04ff777 /lisp/progmodes | |
parent | 8be3aee2813f528b02bc913ca4d79e34e72b1754 (diff) | |
download | emacs-a89f0b6f33f9eb8910a1fceda9028d76ef50b05d.tar.gz |
maint: shorten https://lists.gnu.org/archive/html/... links
Diffstat (limited to 'lisp/progmodes')
-rw-r--r-- | lisp/progmodes/cc-menus.el | 2 | ||||
-rw-r--r-- | lisp/progmodes/compile.el | 4 | ||||
-rw-r--r-- | lisp/progmodes/octave.el | 2 | ||||
-rw-r--r-- | lisp/progmodes/verilog-mode.el | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/lisp/progmodes/cc-menus.el b/lisp/progmodes/cc-menus.el index 9339dcd83cc..7dae8297fd3 100644 --- a/lisp/progmodes/cc-menus.el +++ b/lisp/progmodes/cc-menus.el @@ -117,7 +117,7 @@ A sample value might look like: `\\(_P\\|_PROTO\\)'.") ,(concat "^\\<" ; line MUST start with word char ;; \n added to prevent overflow in regexp matcher. - ;; https://lists.gnu.org/archive/html/emacs-pretest-bug/2007-02/msg00021.html + ;; https://lists.gnu.org/r/emacs-pretest-bug/2007-02/msg00021.html "[^()\n]*" ; no parentheses before "[^" c-alnum "_:<>~]" ; match any non-identifier char "\\([" c-alpha "_][" c-alnum "_:<>~]*\\)" ; match function name diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 0794830fcb8..4cce47e5d8c 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -1740,7 +1740,7 @@ Returns the compilation buffer created." (setq thisdir default-directory)) (set-buffer-modified-p nil)) ;; Pop up the compilation buffer. - ;; https://lists.gnu.org/archive/html/emacs-devel/2007-11/msg01638.html + ;; https://lists.gnu.org/r/emacs-devel/2007-11/msg01638.html (setq outwin (display-buffer outbuf '(nil (allow-no-window . t)))) (with-current-buffer outbuf (let ((process-environment @@ -2855,7 +2855,7 @@ TRUE-DIRNAME is the `file-truename' of DIRNAME, if given." ;; The gethash used to not use spec-directory, but ;; this leads to errors when files in different ;; directories have the same name: - ;; https://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00463.html + ;; https://lists.gnu.org/r/emacs-devel/2007-08/msg00463.html (or (gethash (cons filename spec-directory) compilation-locs) (puthash (cons filename spec-directory) (compilation--make-file-struct diff --git a/lisp/progmodes/octave.el b/lisp/progmodes/octave.el index 103b6ce7c51..dc6bba44f32 100644 --- a/lisp/progmodes/octave.el +++ b/lisp/progmodes/octave.el @@ -1497,7 +1497,7 @@ current buffer file unless called with a prefix arg \\[universal-argument]." (string (buffer-substring-no-properties beg end)) line) (with-current-buffer inferior-octave-buffer - ;; https://lists.gnu.org/archive/html/emacs-devel/2013-10/msg00095.html + ;; https://lists.gnu.org/r/emacs-devel/2013-10/msg00095.html (compilation-forget-errors) (setq inferior-octave-output-list nil) (while (not (string-equal string "")) diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el index a6e3ae54559..e2bd89ec46c 100644 --- a/lisp/progmodes/verilog-mode.el +++ b/lisp/progmodes/verilog-mode.el @@ -284,7 +284,7 @@ STRING should be given if the last search was by `string-match' on STRING." ;; This function is lifted directly from emacs's subr.el ;; so that it can be used by xemacs. ;; The idea for this was borrowed from org-mode via this link: -;; https://lists.gnu.org/archive/html/emacs-orgmode/2009-12/msg00032.html +;; https://lists.gnu.org/r/emacs-orgmode/2009-12/msg00032.html (eval-and-compile (cond ((fboundp 'looking-back) |