aboutsummaryrefslogtreecommitdiff
path: root/generic/texi-docstring-magic.el
diff options
context:
space:
mode:
authorDavid Aspinall2000-03-08 05:34:23 +0000
committerDavid Aspinall2000-03-08 05:34:23 +0000
commit37d2b52528f077fcfe708f9b5dd77a1b4edac908 (patch)
tree81e492178a4271ee6292ebeaa411edd5a6b57615 /generic/texi-docstring-magic.el
parent1c874544ecdc2d23c8a31fe322f1b7cc4e78185a (diff)
Fix to uses of dolist for compatibility with Japan Emacs versions (older CLmacs)
Diffstat (limited to 'generic/texi-docstring-magic.el')
-rw-r--r--generic/texi-docstring-magic.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/texi-docstring-magic.el b/generic/texi-docstring-magic.el
index a474a812..f9c660f2 100644
--- a/generic/texi-docstring-magic.el
+++ b/generic/texi-docstring-magic.el
@@ -191,7 +191,7 @@ including any whitespace included to delimit matches.")
"Markup DOCSTRING for texi according to regexp matches."
(let ((case-fold-search nil))
(setq docstring (texi-docstring-magic-untabify docstring))
- (dolist (test texi-docstring-magic-munge-table docstring)
+ (dolist (test texi-docstring-magic-munge-table)
(let ((regexp (nth 0 test))
(predicate (nth 1 test))
(replace (nth 2 test))