]> git.eshelyaron.com Git - emacs.git/commitdiff
; Don't quote nil in comments
authorStefan Kangas <stefankangas@gmail.com>
Thu, 15 Dec 2022 01:24:56 +0000 (02:24 +0100)
committerStefan Kangas <stefankangas@gmail.com>
Thu, 15 Dec 2022 01:35:00 +0000 (02:35 +0100)
lisp/emacs-lisp/subr-x.el
lisp/external-completion.el
lisp/org/ob-clojure.el
lisp/org/org-persist.el

index 0486baba83ca51f5c3ce75ee3d2e10ffc84a8baf..4896f4c29376d8729a883c271c78df4f258e6b2a 100644 (file)
@@ -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
index 8dd75b77193caf0da693f9f29db5ddb59c60837a..e1c3d763142428fb248a2d7b5c7d9c878a07afa4 100644 (file)
@@ -154,7 +154,7 @@ EXPANDED-PATTERN."
              ;;   very often doesn't equate the full set of candidates
              ;;   (many tools cap to sth like 100-1000 results).
              ;;
-             ;; * when `_method' is `nil' or `lambda' which some
+             ;; * when `_method' is nil or `lambda' which some
              ;;   frontends will invoke.  Here, `all' should be
              ;;   sufficient information for `complete-with-action' to
              ;;   do the job correctly.
index b424cf48ff956886f3b0611ae527ada2e1f65f93..b045b4e6e542f4adb7868f80a9ee309690308b3f 100644 (file)
@@ -248,8 +248,8 @@ or set the `:backend' header argument"))))
                                "value")))
                result0)))
       (ob-clojure-string-or-list
-       ;; Filter out s-expressions that return `nil' (string "nil"
-       ;; from nrepl eval) or comment forms (actual `nil' from nrepl)
+       ;; Filter out s-expressions that return nil (string "nil"
+       ;; from nrepl eval) or comment forms (actual nil from nrepl)
        (reverse (delete "" (mapcar (lambda (r)
                                     (replace-regexp-in-string "nil" "" (or r "")))
                                   result0)))))))
index 1a32ed0102068739662e98406ec316a66d295e60..9645dea7d9e20f9f5f45f5fe4dcce52630346382 100644 (file)
 ;; from the persistent storage at the end of Emacs session.  The
 ;; expiry condition can be set when saving/registering data
 ;; containers.  The expirty condition can be `never' - data will never
-;; expire; `nil' - data will expire at the end of current Emacs session;
+;; expire; nil - data will expire at the end of current Emacs session;
 ;; a number - data will expire after the number days from last access;
 ;; a function - data will expire if the function, called with a single
 ;; argument - collection, returns non-nil.