aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorStefan Monnier2000-08-16 21:05:37 +0000
committerStefan Monnier2000-08-16 21:05:37 +0000
commitc0df1972b22ef1521ee8f25e33bfc7dc7ab1ad78 (patch)
tree2cb3ae72b30f167b0e79c36c195545d5f02cabf7 /lisp/textmodes
parent7382bcae29e08faa99ef275d83cd4cb31aace60a (diff)
downloademacs-c0df1972b22ef1521ee8f25e33bfc7dc7ab1ad78.tar.gz
emacs-c0df1972b22ef1521ee8f25e33bfc7dc7ab1ad78.zip
Don't quote lambda.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/tex-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el
index 432aa8e3852..315b61a8ab2 100644
--- a/lisp/textmodes/tex-mode.el
+++ b/lisp/textmodes/tex-mode.el
@@ -1367,8 +1367,8 @@ This function is more useful than \\[tex-buffer] when you need the
1367 (setq start (match-end 0))) 1367 (setq start (match-end 0)))
1368 (or (= start 0) 1368 (or (= start 0)
1369 (setq elts (cons (substring s start) elts))) 1369 (setq elts (cons (substring s start) elts)))
1370 (mapconcat '(lambda (elt) 1370 (mapconcat (lambda (elt)
1371 (if (= (length elt) 0) elt (expand-file-name elt))) 1371 (if (= (length elt) 0) elt (expand-file-name elt)))
1372 (nreverse elts) ":"))) 1372 (nreverse elts) ":")))
1373 1373
1374(defun tex-shell-running () 1374(defun tex-shell-running ()