浏览代码

Do not allow a link description that is entirely white

Carsten Dominik 15 年之前
父节点
当前提交
4824387e1c
共有 2 个文件被更改,包括 9 次插入0 次删除
  1. 5 0
      lisp/ChangeLog
  2. 4 0
      lisp/org.el

+ 5 - 0
lisp/ChangeLog

@@ -1,3 +1,8 @@
+2009-11-20  Carsten Dominik  <carsten.dominik@gmail.com>
+
+	* org.el (org-make-link-string): Don't allow a description with
+	only white space.
+
 2009-11-19  Carsten Dominik  <carsten.dominik@gmail.com>
 
 	* org-agenda.el (org-agenda-insert-diary-strategy): New variable.

+ 4 - 0
lisp/org.el

@@ -7709,6 +7709,10 @@ according to FMT (default from `org-email-link-description-format')."
   "Make a link with brackets, consisting of LINK and DESCRIPTION."
   (unless (string-match "\\S-" link)
     (error "Empty link"))
+  (when (and description
+	     (stringp description)
+	     (not (string-match "\\S-" description)))
+    (setq description nil))
   (when (stringp description)
     ;; Remove brackets from the description, they are fatal.
     (while (string-match "\\[" description)