]> git.eshelyaron.com Git - emacs.git/commitdiff
Lift restriction for finding theme summary line
authorMauro Aranda <maurooaranda@gmail.com>
Wed, 19 May 2021 12:57:46 +0000 (09:57 -0300)
committerMauro Aranda <maurooaranda@gmail.com>
Wed, 19 May 2021 12:57:46 +0000 (09:57 -0300)
* lisp/cus-theme.el (custom-theme-summary): Don't limit the file to
having the deftheme form as the very first form, rather look for the
deftheme form explicitly.

lisp/cus-theme.el

index 13fb9f34fa0b82f5938f444cc4cf05d14dafb0be..dfa22264037baa1882088d86b8b52d5bd5a73f4b 100644 (file)
@@ -657,10 +657,12 @@ Theme files are named *-theme.el in `"))
            (insert-file-contents fn)
            (let ((sexp (let ((read-circle nil))
                          (condition-case nil
-                             (read (current-buffer))
-                           (end-of-file nil)))))
-              (and (eq (car-safe sexp) 'deftheme)
-                  (setq doc (nth 2 sexp))))))))
+                              (progn
+                                (re-search-forward "^(deftheme")
+                                (beginning-of-line)
+                                (read (current-buffer)))
+                            (error nil)))))
+              (setq doc (nth 2 sexp)))))))
     (cond ((null doc)
           "(no documentation available)")
          ((string-match ".*" doc)