the context menu will contain an item that searches
the word at mouse click."
(when (thing-at-mouse click 'word)
- (define-key menu [dictionary-separator] menu-bar-separator)
- (define-key menu [dictionary-search-word-at-mouse]
+ (define-key-after menu [dictionary-separator] menu-bar-separator
+ 'middle-separator)
+ (define-key-after menu [dictionary-search-word-at-mouse]
'(menu-item "Dictionary Search" dictionary-search-word-at-mouse
- :help "Search the word at mouse click in dictionary")))
+ :help "Search the word at mouse click in dictionary")
+ 'dictionary-separator))
menu)
(provide 'dictionary)