Преглед изворни кода

ox-beamer: Fix `org-beamer-select-environment'

* lisp/ox-beamer.el (org-beamer-select-environment): Fix thinko.

The error prevents the function to complete: only the tag is added,
not the property.
Nicolas Goaziou пре 6 година
родитељ
комит
cac45d5469
1 измењених фајлова са 6 додато и 3 уклоњено
  1. 6 3
      lisp/ox-beamer.el

+ 6 - 3
lisp/ox-beamer.el

@@ -1096,9 +1096,12 @@ aid, but the tag does not have any semantic meaning."
 	   (read-string "Frame reference (*Title, #custom-id, id:...): "))
 	  (org-set-property "BEAMER_act"
 			    (read-string "Overlay specification: "))))
-       ((let ((tags-re (concat "B_" (regexp-opt (mapcar #'car envs) t))))
-	  (cl-some (lambda (tag) (string-match tags-re tag)) tags))
-	(org-entry-put nil "BEAMER_env" (match-string 1 tags)))
+       ((let* ((tags-re (concat "B_" (regexp-opt (mapcar #'car envs) t)))
+	       (env (cl-some (lambda (tag)
+			       (and (string-match tags-re tag)
+				    (match-string 1 tag)))
+			     tags)))
+	  (and env (progn (org-entry-put nil "BEAMER_env" env) t))))
        (t (org-entry-delete nil "BEAMER_env"))))))
 
 ;;;###autoload