diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-11-10 17:58:55 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-11-10 17:58:55 +0000 |
commit | dde25849fd0fac2daf39d2c98d64f3d4faf0b7ec (patch) | |
tree | f6d910e70e8a4afae65876b15be53df4ac728e61 /lisp/dos-fns.el | |
parent | 52c7612248b135104e5c0d31183e02a50ae20dcd (diff) | |
download | emacs-dde25849fd0fac2daf39d2c98d64f3d4faf0b7ec.tar.gz |
Fix previous change.
Diffstat (limited to 'lisp/dos-fns.el')
-rw-r--r-- | lisp/dos-fns.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dos-fns.el b/lisp/dos-fns.el index 4f60325d083..1f2a7153ef9 100644 --- a/lisp/dos-fns.el +++ b/lisp/dos-fns.el @@ -28,7 +28,7 @@ ;;; Code: ;;; Add %t: into the mode line format just after the open-paren. -(let ((tail (assoc " %[(" mode-line-format))) +(let ((tail (member " %[(" mode-line-format))) (setcdr tail (cons (purecopy "%t:") (cdr tail)))) |