summaryrefslogtreecommitdiff
path: root/lisp/org
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2022-12-15 02:24:56 +0100
committerStefan Kangas <stefankangas@gmail.com>2022-12-15 02:35:00 +0100
commita15cd55044c6bb4d4e9f9aec23b8b5b9cbcb38ac (patch)
tree55bbb00def05c574e0d6713d11ad9db222cda15e /lisp/org
parentda39200c4be29463ad58148dbe373f9095aab929 (diff)
downloademacs-a15cd55044c6bb4d4e9f9aec23b8b5b9cbcb38ac.tar.gz
emacs-a15cd55044c6bb4d4e9f9aec23b8b5b9cbcb38ac.tar.bz2
emacs-a15cd55044c6bb4d4e9f9aec23b8b5b9cbcb38ac.zip
; Don't quote nil in comments
Diffstat (limited to 'lisp/org')
-rw-r--r--lisp/org/ob-clojure.el4
-rw-r--r--lisp/org/org-persist.el2
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/org/ob-clojure.el b/lisp/org/ob-clojure.el
index b424cf48ff9..b045b4e6e54 100644
--- a/lisp/org/ob-clojure.el
+++ b/lisp/org/ob-clojure.el
@@ -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)))))))
diff --git a/lisp/org/org-persist.el b/lisp/org/org-persist.el
index 1a32ed01020..9645dea7d9e 100644
--- a/lisp/org/org-persist.el
+++ b/lisp/org/org-persist.el
@@ -134,7 +134,7 @@
;; 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.