diff --git a/doc/org.texi b/doc/org.texi index 75dc8e063..7e66034d6 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -9729,8 +9729,8 @@ multiple footnotes side by side. @vindex org-fontify-emphasized-text @vindex org-emphasis-regexp-components @vindex org-emphasis-alist -You can make words @b{*bold*}, @i{/italic/}, _underlined_, @code{=code=} -and @code{~verbatim~}, and, if you must, @samp{+strike-through+}. Text +You can make words @b{*bold*}, @i{/italic/}, _underlined_, @code{=verbatim=} +and @code{~code~}, and, if you must, @samp{+strike-through+}. Text in the code and verbatim string is not processed for Org mode specific syntax, it is exported verbatim. diff --git a/lisp/org-colview.el b/lisp/org-colview.el index 805882d7b..705a29cd6 100644 --- a/lisp/org-colview.el +++ b/lisp/org-colview.el @@ -174,7 +174,7 @@ This is the compiled version of the format.") (face (list color font 'org-column ref-face)) (face1 (list color font 'org-agenda-column-dateline ref-face)) (cphr (get-text-property (point-at-bol) 'org-complex-heading-regexp)) - pom property ass width f fc string ov column val modval s2 title calc) + pom property ass width f fc string fm ov column val modval s2 title calc) ;; Check if the entry is in another buffer. (unless props (if (eq major-mode 'org-agenda-mode) diff --git a/lisp/org.el b/lisp/org.el index 2f0d8912e..6f4b853ba 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -4257,8 +4257,8 @@ You need to reload Org or to restart Emacs after customizing this.") `(("*" bold) ("/" italic) ("_" underline) - ("=" org-code verbatim) - ("~" org-verbatim verbatim) + ("=" org-verbatim verbatim) + ("~" org-code verbatim) ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t)))) "Alist of characters and faces to emphasize text. Text starting and ending with a special character will be emphasized,