emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] BUG: org-emphasize (C-c C-x C-f) returns with error


From: Vladi Solutka
Subject: [Orgmode] BUG: org-emphasize (C-c C-x C-f) returns with error
Date: Tue, 28 Oct 2008 17:21:07 +0100

Hi!

I just noticed that org-emphasize (when called via C-c C-x C-f)
returns an error. In org.el:3501 there seems to be a problem when
'org-emphasis-alist' contains empty strings for html tags; I in fact
made the error go away by adding html tags for the org-verbatim entry
of this list (org.el:2255):

(defcustom org-emphasis-alist
  `(("*" bold "<b>" "</b>")
    ("/" italic "<i>" "</i>")
    ("_" underline "<u>" "</u>")
    ("=" org-code "<code>" "</code>" verbatim)
-    ("~" org-verbatim "" "" verbatim)
+    ("~" org-verbatim "<pre>" "</pre>" verbatim)
    ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))
     "<del>" "</del>")
    )


But I guess this is the wrong place to fix it ... :-|

--- \\/ladi





reply via email to

[Prev in Thread] Current Thread [Next in Thread]