diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2022-10-01 22:32:25 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2022-10-01 22:34:47 +0200 |
commit | fee9deff5309cfc5f952181cb2cae1a344b4cc45 (patch) | |
tree | a76ee68102411f859337b738b0cdcfe55ecf0cef /lisp/net | |
parent | be85d2d92070c15da495fa16199112f118f03da5 (diff) | |
download | emacs-fee9deff5309cfc5f952181cb2cae1a344b4cc45.tar.gz emacs-fee9deff5309cfc5f952181cb2cae1a344b4cc45.tar.bz2 emacs-fee9deff5309cfc5f952181cb2cae1a344b4cc45.zip |
Revert "Decrease use of the word "Emacsen" in docs"
This reverts commit 55f46cc77cb9d72fbabadb63d8aeab45c5e005e2.
Ref. https://lists.gnu.org/r/emacs-devel/2022-10/msg00016.html
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 646ae864526..b343e460df6 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 Emacs (prior 27.1), `tramp-archive-autoload-file-name-regexp' +;; In older Emacsen (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 -;; versions of Emacs. +;; Emacsen. ;;;###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 e55f6bb6ee5..11b3689df60 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 versions of Emacs. +;; available in older Emacsen. ;; * 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 2bbdb299a69..e849c36d132 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 Emacs. +;; base64-encode-region which is built-in to modern Emacsen. ;;; Code: diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 03dc47a053f..ada529d396f 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -3676,7 +3676,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 -;; Emacs, it is save to invoke them via `tramp-compat-funcall'. +;; Emacsen, 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)) @@ -5487,7 +5487,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 old versions of Emacs. + ;; Be kind for older Emacsen. (if (member 'remote-file-error debug-ignored-errors) (throw 'non-essential 'non-essential) (tramp-error |