diff options
author | Glenn Morris <rgm@gnu.org> | 2021-10-02 10:37:42 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2021-10-02 10:37:42 -0700 |
commit | f9111d8784bf12263abbe127cdfcbe5f409c9b3b (patch) | |
tree | 06510f30dd3e1b5e5ea3d265b7cb6cfa9307cee1 /lisp/org/oc-csl.el | |
parent | 3dc094abeea40474b42c1f7002810011539769dc (diff) | |
download | emacs-f9111d8784bf12263abbe127cdfcbe5f409c9b3b.tar.gz emacs-f9111d8784bf12263abbe127cdfcbe5f409c9b3b.tar.bz2 emacs-f9111d8784bf12263abbe127cdfcbe5f409c9b3b.zip |
The safe-local-variable property is a function (bug#50944)
* lisp/org/oc-basic.el (org-cite-basic-sorting-field)
(org-cite-basic-author-year-separator)
(org-cite-basic-max-key-distance)
(org-cite-basic-author-column-end)
(org-cite-basic-column-separator)
(org-cite-basic-mouse-over-key-face):
* lisp/org/oc-biblatex.el (org-cite-biblatex-options):
* lisp/org/oc-csl.el (org-cite-csl-link-cites)
(org-cite-csl-html-hanging-indent)
(org-cite-csl-html-label-width-per-char)
(org-cite-csl-latex-hanging-indent):
* lisp/org/oc.el (org-cite-adjust-note-numbers):
* lisp/org/org-keys.el (org-return-follows-link):
* lisp/org/org.el (org-fontify-todo-headline):
* lisp/org/ox-html.el (org-html-equation-reference-format)
(org-html-wrap-src-lines):
* lisp/org/ox-latex.el (org-latex-reference-command)
(org-latex-default-quote-environment):
* lisp/textmodes/tildify.el (tildify-pattern)
(tildify-space-string): Fix :safe property.
Diffstat (limited to 'lisp/org/oc-csl.el')
-rw-r--r-- | lisp/org/oc-csl.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/org/oc-csl.el b/lisp/org/oc-csl.el index cf3538b870c..1430779b982 100644 --- a/lisp/org/oc-csl.el +++ b/lisp/org/oc-csl.el @@ -146,7 +146,7 @@ directory. This variable is ignored when style file is absolute." :group 'org-cite :package-version '(Org . "9.5") :type 'boolean - :safe t) + :safe #'booleanp) (defcustom org-cite-csl-no-citelinks-backends '(ascii) "List of export back-ends for which cite linking is disabled. @@ -163,7 +163,7 @@ is also disabled." :group 'org-cite :package-version '(Org . "9.5") :type 'string - :safe t) + :safe #'stringp) (defcustom org-cite-csl-html-label-width-per-char "0.6em" "Character width in CSS units for calculating entry label widths. @@ -171,14 +171,14 @@ Used only when `second-field-align' is activated by the used CSL style." :group 'org-cite :package-version '(Org . "9.5") :type 'string - :safe t) + :safe #'stringp) (defcustom org-cite-csl-latex-hanging-indent "1.5em" "Size of hanging-indent for LaTeX output in valid LaTeX units." :group 'org-cite :package-version '(Org . "9.5") :type 'string - :safe t) + :safe #'stringp) ;;; Internal variables |