equal
deleted
inserted
replaced
82 (font-lock-add-keywords |
82 (font-lock-add-keywords |
83 mode |
83 mode |
84 `( |
84 `( |
85 ;; 64 times, for highlight C-u C-u C-u <key> |
85 ;; 64 times, for highlight C-u C-u C-u <key> |
86 ("\\([^[:space:]]\\)\\1\\{63\\}" 0 'my-contrasty-face t) )) ) |
86 ("\\([^[:space:]]\\)\\1\\{63\\}" 0 'my-contrasty-face t) )) ) |
|
87 |
|
88 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|
89 ;; Make mouse clicks work in xterm (and iTerm). |
|
90 |
|
91 (when (not (window-system)) |
|
92 (xterm-mouse-mode +1)) |
|
93 |