diff options
| author | Eli Zaretskii | 2022-05-02 18:57:15 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2022-05-02 18:57:15 +0300 |
| commit | 1477d12882ddf9bfec2beebae722b5680f5e6032 (patch) | |
| tree | 6ea91bd764d0cea5496907ccd11d9912e5b90902 | |
| parent | 7f81470250589dd0ca4b024a315c0103fce9bf84 (diff) | |
| download | emacs-1477d12882ddf9bfec2beebae722b5680f5e6032.tar.gz emacs-1477d12882ddf9bfec2beebae722b5680f5e6032.zip | |
; Fix typo and wording of a doc string
* lisp/textmodes/reftex-parse.el (reftex-using-biblatex-p): Fix
typo and wording of the doc string.
| -rw-r--r-- | lisp/textmodes/reftex-parse.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/textmodes/reftex-parse.el b/lisp/textmodes/reftex-parse.el index bae455dd4d3..49cef297882 100644 --- a/lisp/textmodes/reftex-parse.el +++ b/lisp/textmodes/reftex-parse.el | |||
| @@ -371,9 +371,9 @@ of master file." | |||
| 371 | 371 | ||
| 372 | (defun reftex-using-biblatex-p () | 372 | (defun reftex-using-biblatex-p () |
| 373 | "Return non-nil if we are using biblatex or other specific cite package. | 373 | "Return non-nil if we are using biblatex or other specific cite package. |
| 374 | biblatex and other packages like multibib allow multiple macro | 374 | biblatex and other similar packages like multibib allow multiple macro |
| 375 | calls to load a bibliography file. This packages should be | 375 | calls to load a bibliography file. This function should be able to |
| 376 | detected by this function." | 376 | detect those packages." |
| 377 | (if (boundp 'TeX-active-styles) | 377 | (if (boundp 'TeX-active-styles) |
| 378 | ;; the sophisticated AUCTeX way | 378 | ;; the sophisticated AUCTeX way |
| 379 | (or (member "biblatex" TeX-active-styles) | 379 | (or (member "biblatex" TeX-active-styles) |