aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Djärv2010-04-02 17:18:25 +0200
committerJan Djärv2010-04-02 17:18:25 +0200
commita9ae306fe491f75b43a9c70c8909c138c36765d5 (patch)
treeec0442512993a691d61686d3fc9493b37b1e2b7f
parent3fb87bf50d9de85aebc897023f5300008077c9ed (diff)
parent1fa9b3a6756be8d392a26a332536d9422df87729 (diff)
downloademacs-a9ae306fe491f75b43a9c70c8909c138c36765d5.tar.gz
emacs-a9ae306fe491f75b43a9c70c8909c138c36765d5.zip
Fix previous fix. Parantesis misplaced.
-rw-r--r--lisp/tmm.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/tmm.el b/lisp/tmm.el
index 97f017e2352..e453dbde84b 100644
--- a/lisp/tmm.el
+++ b/lisp/tmm.el
@@ -465,8 +465,8 @@ It uses the free variable `tmm-table-undef' to keep undefined keys."
465 ((if (listp (cdr-safe (cdr-safe elt))) 465 ((if (listp (cdr-safe (cdr-safe elt)))
466 (or (keymapp (cdr-safe (cdr-safe elt))) 466 (or (keymapp (cdr-safe (cdr-safe elt)))
467 (eq (car (cdr-safe (cdr-safe elt))) 'lambda)) 467 (eq (car (cdr-safe (cdr-safe elt))) 'lambda))
468 (and (symbolp (cdr-safe (cdr-safe elt)) 468 (and (symbolp (cdr-safe (cdr-safe elt)))
469 (fboundp (cdr-safe (cdr-safe elt)))))) 469 (fboundp (cdr-safe (cdr-safe elt)))))
470 (setq km (cddr elt)) 470 (setq km (cddr elt))
471 (and (stringp (car elt)) (setq str (car elt))) 471 (and (stringp (car elt)) (setq str (car elt)))
472 (and str 472 (and str