Forráskód Böngészése

org-element.el: Remove illegal t clause in case

* lisp/org-element.el (org-element-paragraph-separate): Remove
redundant and misplaced t clause in case.

TINYCHANGE
Mats Lidell 12 éve
szülő
commit
8e88bc0e0b
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      lisp/org-element.el

+ 1 - 1
lisp/org-element.el

@@ -149,7 +149,7 @@
           "\\|"
           ;; Lists.
           (let ((term (case org-plain-list-ordered-item-terminator
-                        (t "[.)]") (?\) ")") (?. "\\.") (otherwise "[.)]")))
+                        (?\) ")") (?. "\\.") (otherwise "[.)]")))
                 (alpha (and org-alphabetical-lists "\\|[A-Za-z]")))
             (concat "\\(?:[-+*]\\|\\(?:[0-9]+" alpha "\\)" term "\\)"
                     "\\(?:[ \t]\\|$\\)"))