diff options
| author | Stefan Monnier | 2008-04-03 20:03:31 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-04-03 20:03:31 +0000 |
| commit | 7fe7479dc555e408ee4d932af942a8bad4651f5c (patch) | |
| tree | 6a40b8e191c6d96aaba4974b4f6a02311a5033b5 | |
| parent | 82fb0b42f077b2c289e99579175784b57c26e58a (diff) | |
| download | emacs-7fe7479dc555e408ee4d932af942a8bad4651f5c.tar.gz emacs-7fe7479dc555e408ee4d932af942a8bad4651f5c.zip | |
(tar-mode-map): Obey mouse-1-click-follows-link.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/tar-mode.el | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a87416638da..44d7465c24a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * tar-mode.el (tar-mode-map): Obey mouse-1-click-follows-link. | ||
| 4 | |||
| 1 | 2008-04-03 Chong Yidong <cyd@stupidchicken.com> | 5 | 2008-04-03 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * simple.el (handle-shift-selection): New arg. | 7 | * simple.el (handle-shift-selection): New arg. |
diff --git a/lisp/tar-mode.el b/lisp/tar-mode.el index 8df1231d96c..c1b899d3582 100644 --- a/lisp/tar-mode.el +++ b/lisp/tar-mode.el | |||
| @@ -498,6 +498,8 @@ is visible (and the real data of the buffer is hidden)." | |||
| 498 | (define-key map "M" 'tar-chmod-entry) | 498 | (define-key map "M" 'tar-chmod-entry) |
| 499 | (define-key map "G" 'tar-chgrp-entry) | 499 | (define-key map "G" 'tar-chgrp-entry) |
| 500 | (define-key map "O" 'tar-chown-entry) | 500 | (define-key map "O" 'tar-chown-entry) |
| 501 | ;; Let mouse-1 follow the link. | ||
| 502 | (define-key map [follow-link] 'mouse-face) | ||
| 501 | 503 | ||
| 502 | ;; Make menu bar items. | 504 | ;; Make menu bar items. |
| 503 | 505 | ||