diff options
| author | Ihor Radchenko <yantar92@posteo.net> | 2023-12-07 11:31:01 +0100 |
|---|---|---|
| committer | Ihor Radchenko <yantar92@posteo.net> | 2023-12-07 11:31:07 +0100 |
| commit | a59193e47d3addb5c4e30774362b1edbc49fbe20 (patch) | |
| tree | 40ff63361a96cf92519e6e4182803d371aa945e4 | |
| parent | fdd9b6d330a5ef7c0e95b67f37d0233922c29300 (diff) | |
| download | org-mode-a59193e47.tar.gz | |
fixup! lisp/oc-basic.el: Consider that author/title fields may be raw string objects
* lisp/oc.el (org-cite-capitalize): Should use `capitalize', not `upcase'.
| -rw-r--r-- | lisp/oc.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1241,7 +1241,7 @@ and must return either a string, an object, or a secondary string." ((stringp str) (capitalize str)) ((org-element-type-p str 'raw) (org-export-raw-string - (upcase (mapconcat #'identity (org-element-contents str) "")))) + (capitalize (mapconcat #'identity (org-element-contents str) "")))) (t (error "%S must be either a string or raw string object" str)))) |
