This commit is contained in:
djcb 2011-12-26 11:17:28 +01:00
parent aec2e73ad4
commit 9043ec0f51
2 changed files with 2 additions and 4 deletions

View File

@ -79,14 +79,12 @@ set FUNC to be called with the STR is clicked."
(map (make-sparse-keymap)))
(define-key map [mouse-2] func)
(define-key map (kbd "RET") func)
(put-text-property 0 (- (length newstr) 1) 'keymap map newstr)
(put-text-property 0 (length newstr) 'keymap map newstr)
(put-text-property (string-match "\\w" newstr)
(- (length newstr) 1) 'mouse-face 'highlight newstr)
newstr))
(defun mu4e-main-view()
"Show the mm main view."
(let ((buf (get-buffer-create mu4e-main-buffer-name))

View File

@ -118,7 +118,7 @@ process."
"Dummy handler function."
(error "Not handled: %S" args))
(defconst mu4e-server-name "*mu4e-server"
(defconst mu4e-server-name "*mu4e-server*"
"*internal* Name of the server process, buffer.")
(defun mu4e-start-proc ()