diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2022-12-15 02:24:56 +0100 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2022-12-15 02:35:00 +0100 |
commit | a15cd55044c6bb4d4e9f9aec23b8b5b9cbcb38ac (patch) | |
tree | 55bbb00def05c574e0d6713d11ad9db222cda15e /lisp/emacs-lisp | |
parent | da39200c4be29463ad58148dbe373f9095aab929 (diff) | |
download | emacs-a15cd55044c6bb4d4e9f9aec23b8b5b9cbcb38ac.tar.gz emacs-a15cd55044c6bb4d4e9f9aec23b8b5b9cbcb38ac.tar.bz2 emacs-a15cd55044c6bb4d4e9f9aec23b8b5b9cbcb38ac.zip |
; Don't quote nil in comments
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/subr-x.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/subr-x.el b/lisp/emacs-lisp/subr-x.el index 0486baba83c..4896f4c2937 100644 --- a/lisp/emacs-lisp/subr-x.el +++ b/lisp/emacs-lisp/subr-x.el @@ -399,7 +399,7 @@ this defaults to the current buffer." "Query the user for a process and return the process object." ;; Currently supports only the PROCESS argument. ;; Must either return a list containing a process, or signal an error. - ;; (Returning `nil' would mean the current buffer's process.) + ;; (Returning nil would mean the current buffer's process.) (unless (fboundp 'process-list) (error "Asynchronous subprocesses are not supported on this system")) ;; Local function to return cons of a complete-able name, and the |