aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-10-12 06:34:33 +0000
committerGlenn Morris2007-10-12 06:34:33 +0000
commit17d10974d8a25ecd345ccfcbbfd25d7e39aa5209 (patch)
treee3bafc3489478c87df8a0ba17a1d071e8f271c6f
parent4b33469eb587a46c7d8d16e12ed060e2af27b37c (diff)
downloademacs-17d10974d8a25ecd345ccfcbbfd25d7e39aa5209.tar.gz
emacs-17d10974d8a25ecd345ccfcbbfd25d7e39aa5209.zip
(reftex-toc-do-promote): Use mapc rather than mapcar.
-rw-r--r--lisp/textmodes/reftex-toc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/reftex-toc.el b/lisp/textmodes/reftex-toc.el
index 4de409de70c..ae147cc6b97 100644
--- a/lisp/textmodes/reftex-toc.el
+++ b/lisp/textmodes/reftex-toc.el
@@ -618,7 +618,7 @@ point."
618 nil ; we have permission, do nothing 618 nil ; we have permission, do nothing
619 (error "Abort")) ; abort, we don't have permission 619 (error "Abort")) ; abort, we don't have permission
620 ;; Do the changes 620 ;; Do the changes
621 (mapcar 'reftex-toc-promote-action entries) 621 (mapc 'reftex-toc-promote-action entries)
622 ;; Rescan the document and rebuilt the toc buffer 622 ;; Rescan the document and rebuilt the toc buffer
623 (save-window-excursion 623 (save-window-excursion
624 (reftex-toc-Rescan)) 624 (reftex-toc-Rescan))