diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/bindings.el | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f6e5241de8f..ee03aeccb10 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -12,6 +12,9 @@ | |||
| 12 | 12 | ||
| 13 | 2011-05-28 Chong Yidong <cyd@stupidchicken.com> | 13 | 2011-05-28 Chong Yidong <cyd@stupidchicken.com> |
| 14 | 14 | ||
| 15 | * bindings.el (help-echo): Make the initial non-indicator dash | ||
| 16 | empty on graphical terminals (Bug#7295). | ||
| 17 | |||
| 15 | * files.el (auto-mode-alist): Move config rule after the | 18 | * files.el (auto-mode-alist): Move config rule after the |
| 16 | in-stripping one (Bug#8547). | 19 | in-stripping one (Bug#8547). |
| 17 | 20 | ||
diff --git a/lisp/bindings.el b/lisp/bindings.el index 63c83ada9ba..ffc797966b8 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el | |||
| @@ -321,7 +321,9 @@ mouse-3: Remove current window from display") | |||
| 321 | (standard-mode-line-format | 321 | (standard-mode-line-format |
| 322 | (list | 322 | (list |
| 323 | "%e" | 323 | "%e" |
| 324 | (propertize "-" 'help-echo help-echo) | 324 | `(:eval (if (display-graphic-p) |
| 325 | ,(propertize " " 'help-echo help-echo) | ||
| 326 | ,(propertize "-" 'help-echo help-echo))) | ||
| 325 | 'mode-line-mule-info | 327 | 'mode-line-mule-info |
| 326 | 'mode-line-client | 328 | 'mode-line-client |
| 327 | 'mode-line-modified | 329 | 'mode-line-modified |