From c8b0a0d1b67432932017424570d993a93036bc56 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Thu, 15 Dec 2022 02:24:56 +0100 Subject: [PATCH] Backport commit a15cd5504 from Emacs ; Don't quote nil in comments a15cd55044c6bb4d4e9f9aec23b8b5b9cbcb38ac Stefan Kangas Thu Dec 15 02:35:00 2022 +0100 --- lisp/ob-clojure.el | 4 ++-- lisp/org-persist.el | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/ob-clojure.el b/lisp/ob-clojure.el index b424cf48f..b045b4e6e 100644 --- a/lisp/ob-clojure.el +++ b/lisp/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-persist.el b/lisp/org-persist.el index 1a32ed010..9645dea7d 100644 --- a/lisp/org-persist.el +++ b/lisp/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.