]> git.eshelyaron.com Git - emacs.git/commitdiff
Delete useless conditional in describe-keymap
authorStefan Kangas <stefankangas@gmail.com>
Tue, 8 Aug 2023 01:37:54 +0000 (03:37 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Tue, 8 Aug 2023 01:40:03 +0000 (03:40 +0200)
* lisp/help-fns.el (describe-keymap): Delete useless
conditional.  (Bug#65128)

lisp/help-fns.el

index 2d94182df3340dcd06aea321e2abb9dd36747529..fc8f431fd110c759a4bad8e1afdd46d31bdeada8 100644 (file)
@@ -2071,11 +2071,9 @@ keymap value."
         (if (symbolp keymap)
             (error "Not a keymap variable: %S" keymap)
           (error "Not a keymap")))
-      (let ((sym nil))
-        (unless sym
-          (setq sym (cl-gentemp "KEYMAP OBJECT (no variable) "))
-          (setq used-gentemp t)
-          (set sym keymap))
+      (let ((sym (cl-gentemp "KEYMAP OBJECT (no variable) ")))
+        (setq used-gentemp t)
+        (set sym keymap)
         (setq keymap sym)))
     ;; Follow aliasing.
     (setq keymap (or (ignore-errors (indirect-variable keymap)) keymap))