diff options
| -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 @@ | |||
| 28 | ;;; Code: | 28 | ;;; Code: |
| 29 | 29 | ||
| 30 | ;;; Add %t: into the mode line format just after the open-paren. | 30 | ;;; Add %t: into the mode line format just after the open-paren. |
| 31 | (let ((tail (assoc " %[(" mode-line-format))) | 31 | (let ((tail (member " %[(" mode-line-format))) |
| 32 | (setcdr tail (cons (purecopy "%t:") | 32 | (setcdr tail (cons (purecopy "%t:") |
| 33 | (cdr tail)))) | 33 | (cdr tail)))) |
| 34 | 34 | ||