.emacs-obsolete
changeset 1313 ec0316f8e223
parent 1304 8c1f6458c907
child 1375 5959fa99a6f7
equal deleted inserted replaced
1312:7c7a0f0e370e 1313:ec0316f8e223
    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