aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2007-10-29 07:30:06 +0000
committerGlenn Morris <[email protected]>2007-10-29 07:30:06 +0000
commit3fcff82f1f1f60050c36996df3760ac59806ea0b (patch)
tree1a070acb6ac42ad41a384d9fbeaf9e9d521e0d2b /lisp/textmodes
parent4194f0a4703ce39e3f779c20cca009a25dde6421 (diff)
(org-publish-get-plist-from-filename):
Use mapc rather than mapcar (reinstall change deleted without log entry 2007-10-22).
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/org-publish.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/org-publish.el b/lisp/textmodes/org-publish.el
index 26dc409e19..e98afaf4a6 100644
--- a/lisp/textmodes/org-publish.el
+++ b/lisp/textmodes/org-publish.el
@@ -426,7 +426,7 @@ nil if not found."
(defun org-publish-get-plist-from-filename (filename)
"Return publishing configuration plist for file FILENAME."
(let ((found nil))
- (mapcar
+ (mapc
(lambda (plist)
(let ((files (org-publish-get-base-files plist)))
(if (member (expand-file-name filename) files)