diff options
| author | Jan Djärv | 2010-04-02 17:18:25 +0200 |
|---|---|---|
| committer | Jan Djärv | 2010-04-02 17:18:25 +0200 |
| commit | a9ae306fe491f75b43a9c70c8909c138c36765d5 (patch) | |
| tree | ec0442512993a691d61686d3fc9493b37b1e2b7f | |
| parent | 3fb87bf50d9de85aebc897023f5300008077c9ed (diff) | |
| parent | 1fa9b3a6756be8d392a26a332536d9422df87729 (diff) | |
| download | emacs-a9ae306fe491f75b43a9c70c8909c138c36765d5.tar.gz emacs-a9ae306fe491f75b43a9c70c8909c138c36765d5.zip | |
Fix previous fix. Parantesis misplaced.
| -rw-r--r-- | lisp/tmm.el | 4 |
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 |