diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2022-10-01 17:16:03 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2022-10-01 17:16:03 +0200 |
commit | 55f46cc77cb9d72fbabadb63d8aeab45c5e005e2 (patch) | |
tree | 92abe51fc09886a1eda8f4a6c8d1602aba604c25 /lisp/net | |
parent | abe83f76de36bc3922b410f9872065fc3903738b (diff) | |
download | emacs-55f46cc77cb9d72fbabadb63d8aeab45c5e005e2.tar.gz emacs-55f46cc77cb9d72fbabadb63d8aeab45c5e005e2.tar.bz2 emacs-55f46cc77cb9d72fbabadb63d8aeab45c5e005e2.zip |
Decrease use of the word "Emacsen" in docs
"Emacsen" is either a less clear way of saying "old versions of
Emacs", or an implicit reference to XEmacs. We recommend against
using it in the FAQ. So use the more clear wording instead.
* doc/misc/gnus.texi (Oort Gnus):
* doc/misc/widget.texi (Basic Types, toggle):
* lisp/cedet/semantic/bovine/c.el (semantic-c-skip-conditional-section):
* lisp/cedet/semantic/wisent/comp.el (wisent-compile-grammar):
* lisp/desktop.el (desktop-save):
* lisp/erc/erc-compat.el:
* lisp/erc/erc-log.el:
* lisp/gnus/gnus-util.el (gnus-replace-in-string):
* lisp/mail/footnote.el:
* lisp/net/tramp-archive.el:
* lisp/net/tramp-smb.el:
* lisp/net/tramp-uu.el:
* lisp/net/tramp.el:
(with-tramp-locked-connection):
* lisp/org/ol-eww.el:
* lisp/org/org-compat.el:
(org-define-error):
* lisp/shadowfile.el:
* lisp/winner.el: Don't use the word "Emacsen".
Diffstat (limited to 'lisp/net')
-rw-r--r-- | lisp/net/tramp-archive.el | 4 | ||||
-rw-r--r-- | lisp/net/tramp-smb.el | 2 | ||||
-rw-r--r-- | lisp/net/tramp-uu.el | 2 | ||||
-rw-r--r-- | lisp/net/tramp.el | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/lisp/net/tramp-archive.el b/lisp/net/tramp-archive.el index b343e460df6..646ae864526 100644 --- a/lisp/net/tramp-archive.el +++ b/lisp/net/tramp-archive.el @@ -201,7 +201,7 @@ It must be supported by libarchive(3).") (put #'tramp-archive-autoload-file-name-regexp 'tramp-autoload t) -;; In older Emacsen (prior 27.1), `tramp-archive-autoload-file-name-regexp' +;; In older Emacs (prior 27.1), `tramp-archive-autoload-file-name-regexp' ;; is not autoloaded. So we cannot expect it to be known in ;; tramp-loaddefs.el. But it exists, when tramp-archive.el is loaded. ;;;###tramp-autoload @@ -332,7 +332,7 @@ arguments to pass to the OPERATION." ;; Starting with Emacs 29, `tramp-archive-file-name-handler' is ;; autoloaded. But it must still be in tramp-loaddefs.el for older -;; Emacsen. +;; versions of Emacs. ;;;###autoload(autoload 'tramp-archive-file-name-handler "tramp-archive") ;;;###tramp-autoload (defun tramp-archive-file-name-handler (operation &rest args) diff --git a/lisp/net/tramp-smb.el b/lisp/net/tramp-smb.el index 11b3689df60..e55f6bb6ee5 100644 --- a/lisp/net/tramp-smb.el +++ b/lisp/net/tramp-smb.el @@ -1761,7 +1761,7 @@ Result is a list of (LOCALNAME MODE SIZE MONTH DAY TIME YEAR)." ;; ;; Problems: ;; * Modern regexp constructs, like spy groups and counted repetitions, aren't -;; available in older Emacsen. +;; available in older versions of Emacs. ;; * The length of constructs (file name, size) might exceed the default. ;; * File names might contain spaces. ;; * Permissions might be empty. diff --git a/lisp/net/tramp-uu.el b/lisp/net/tramp-uu.el index e849c36d132..2bbdb299a69 100644 --- a/lisp/net/tramp-uu.el +++ b/lisp/net/tramp-uu.el @@ -25,7 +25,7 @@ ;;; Commentary: ;; An implementation of "uuencode" in Lisp. Uses the function -;; base64-encode-region which is built-in to modern Emacsen. +;; base64-encode-region which is built-in to modern Emacs. ;;; Code: diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 373392f7c84..5b60aa6313a 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -3674,7 +3674,7 @@ Let-bind it when necessary.") ;; `directory-abbrev-apply' and `directory-abbrev-make-regexp' exists ;; since Emacs 29.1. Since this handler isn't called for older -;; Emacsen, it is save to invoke them via `tramp-compat-funcall'. +;; Emacs, it is save to invoke them via `tramp-compat-funcall'. (defun tramp-handle-abbreviate-file-name (filename) "Like `abbreviate-file-name' for Tramp files." (let* ((case-fold-search (file-name-case-insensitive-p filename)) @@ -5485,7 +5485,7 @@ performed successfully. Any other value means an error." Mostly useful to protect BODY from being interrupted by timers." (declare (indent 1) (debug t)) `(if (tramp-get-connection-property ,proc "locked") - ;; Be kind for older Emacsen. + ;; Be kind for old versions of Emacs. (if (member 'remote-file-error debug-ignored-errors) (throw 'non-essential 'non-essential) (tramp-error |