diff options
| author | Paul Eggert | 2015-05-21 10:04:45 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-05-21 10:06:44 -0700 |
| commit | 96794d2f97cd064e4c2bf4f71459b42558cc8c79 (patch) | |
| tree | ae2d3836af726636586f4ed21dbdfcb079715777 /test | |
| parent | fc071bf7c6a300f52142b92cf99c5a0e63b3e235 (diff) | |
| download | emacs-96794d2f97cd064e4c2bf4f71459b42558cc8c79.tar.gz 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 'test')
| -rw-r--r-- | test/automated/data/package/newer-versions/simple-single-1.4.el | 2 | ||||
| -rw-r--r-- | test/automated/file-notify-tests.el | 2 | ||||
| -rw-r--r-- | test/automated/package-test.el | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/automated/data/package/newer-versions/simple-single-1.4.el b/test/automated/data/package/newer-versions/simple-single-1.4.el index 7d8178c05a5..7b1c00c06db 100644 --- a/test/automated/data/package/newer-versions/simple-single-1.4.el +++ b/test/automated/data/package/newer-versions/simple-single-1.4.el | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | 19 | ||
| 20 | (defcustom simple-single-super-sunday nil | 20 | (defcustom simple-single-super-sunday nil |
| 21 | "How great is this? | 21 | "How great is this? |
| 22 | Default changed to `nil'." | 22 | Default changed to nil." |
| 23 | :type 'boolean | 23 | :type 'boolean |
| 24 | :group 'simple-single | 24 | :group 'simple-single |
| 25 | :package-version "1.4") | 25 | :package-version "1.4") |
diff --git a/test/automated/file-notify-tests.el b/test/automated/file-notify-tests.el index 8e3a7918c80..46d287fe60d 100644 --- a/test/automated/file-notify-tests.el +++ b/test/automated/file-notify-tests.el | |||
| @@ -72,7 +72,7 @@ | |||
| 72 | (defun file-notify--test-local-enabled () | 72 | (defun file-notify--test-local-enabled () |
| 73 | "Whether local file notification is enabled. | 73 | "Whether local file notification is enabled. |
| 74 | This is needed for local `temporary-file-directory' only, in the | 74 | This is needed for local `temporary-file-directory' only, in the |
| 75 | remote case we return always `t'." | 75 | remote case we return always t." |
| 76 | (or file-notify--library | 76 | (or file-notify--library |
| 77 | (file-remote-p temporary-file-directory))) | 77 | (file-remote-p temporary-file-directory))) |
| 78 | 78 | ||
diff --git a/test/automated/package-test.el b/test/automated/package-test.el index ed2e3cf25aa..677bfa613fc 100644 --- a/test/automated/package-test.el +++ b/test/automated/package-test.el | |||
| @@ -124,7 +124,7 @@ | |||
| 124 | ,@(if upload-base | 124 | ,@(if upload-base |
| 125 | '((package-test-archive-upload-base (make-temp-file "pkg-archive-base-" t)) | 125 | '((package-test-archive-upload-base (make-temp-file "pkg-archive-base-" t)) |
| 126 | (package-archive-upload-base package-test-archive-upload-base)) | 126 | (package-archive-upload-base package-test-archive-upload-base)) |
| 127 | (list (cl-gensym)))) ;; Dummy value so `let' doesn't try to bind `nil' | 127 | (list (cl-gensym)))) ;; Dummy value so `let' doesn't try to bind nil |
| 128 | (let ((buf (get-buffer "*Packages*"))) | 128 | (let ((buf (get-buffer "*Packages*"))) |
| 129 | (when (buffer-live-p buf) | 129 | (when (buffer-live-p buf) |
| 130 | (kill-buffer buf))) | 130 | (kill-buffer buf))) |