diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-05-21 10:04:45 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-05-21 10:06:44 -0700 |
commit | 96794d2f97cd064e4c2bf4f71459b42558cc8c79 (patch) | |
tree | ae2d3836af726636586f4ed21dbdfcb079715777 /lisp/net/tramp-compat.el | |
parent | fc071bf7c6a300f52142b92cf99c5a0e63b3e235 (diff) | |
download | emacs-96794d2f97cd064e4c2bf4f71459b42558cc8c79.tar.gz emacs-96794d2f97cd064e4c2bf4f71459b42558cc8c79.tar.bz2 emacs-96794d2f97cd064e4c2bf4f71459b42558cc8c79.zip |
Don't quote nil and t in doc strings
This is as per "Tips for Documentation Strings" in the elisp manual.
For consistency, do the same in diagnostics and comments.
Diffstat (limited to 'lisp/net/tramp-compat.el')
-rw-r--r-- | lisp/net/tramp-compat.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/net/tramp-compat.el b/lisp/net/tramp-compat.el index 3ec90ca556f..e68c81cfa70 100644 --- a/lisp/net/tramp-compat.el +++ b/lisp/net/tramp-compat.el @@ -100,7 +100,7 @@ (setq byte-compile-not-obsolete-vars '(directory-sep-char))) ;; `remote-file-name-inhibit-cache' has been introduced with Emacs 24.1. - ;; Besides `t', `nil', and integer, we use also timestamps (as + ;; Besides t, nil, and integer, we use also timestamps (as ;; returned by `current-time') internally. (unless (boundp 'remote-file-name-inhibit-cache) (defvar remote-file-name-inhibit-cache nil)) @@ -459,7 +459,7 @@ element is not omitted." (delete "" (split-string string pattern))) (defun tramp-compat-process-running-p (process-name) - "Returns `t' if system process PROCESS-NAME is running for `user-login-name'." + "Returns t if system process PROCESS-NAME is running for `user-login-name'." (when (stringp process-name) (cond ;; GNU Emacs 22 on w32. |