; Fix typos

This commit is contained in:
Stefan Kangas 2023-09-02 18:57:11 +02:00
parent 5b246b9b81
commit 3550f44c17
4 changed files with 4 additions and 4 deletions

View file

@ -32867,7 +32867,7 @@
(reftex-index-switch-index-tag): Add `redo' to arguments of
`reftex-display-index'.
(reftex-index-make-phrase-regexp): Fix bug with case-sensitive
indexing. Fix bug with matching is there is a quote before or
indexing. Fix bug with matching if there is a quote before or
after the word.
* textmodes/reftex-cite.el (reftex-all-used-citation-keys):

View file

@ -1585,7 +1585,7 @@ aligner would have dealt with are."
(if (= (point) search-start)
(forward-char)))))
;; when they are no more matches for this rule,
;; when there are no more matches for this rule,
;; align whatever was left over
(if regions
(align-regions regions align-props rule func))))))))

View file

@ -25932,7 +25932,7 @@
* org-latex.el (org-export-as-latex): Do nit require the buffer to
be visiting a file when only exporting to a buffer or string.
(org-export-latex-fix-inputenc): Only save the buffer is there is
(org-export-latex-fix-inputenc): Only save the buffer if there is
a file name attached to it.
2010-04-10 Dan Davison <davison@stats.ox.ac.uk>

View file

@ -877,7 +877,7 @@ add_to_function_history (Lisp_Object symbol, Lisp_Object olddef)
Lisp_Object past = Fget (symbol, Qfunction_history);
Lisp_Object file = Qnil;
/* FIXME: Sadly, `Vload_file_name` gives less precise information
(it's sometimes non-nil when it shoujld be nil). */
(it's sometimes non-nil when it should be nil). */
Lisp_Object tail = Vcurrent_load_list;
FOR_EACH_TAIL_SAFE (tail)
if (NILP (XCDR (tail)) && STRINGP (XCAR (tail)))