leoliu pushed a commit to branch master in repository elpa. commit a282c66d7efdbc78dacad8cac0940ebaf8c9a76c Author: Leo Liu <sdl....@gmail.com> Date: Wed Feb 19 18:15:07 2014 +0800
Fix #30: Remove M-o key binding in ggtags-global-mode --- ggtags.el | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/ggtags.el b/ggtags.el index fd23802..f518e83 100644 --- a/ggtags.el +++ b/ggtags.el @@ -998,8 +998,7 @@ Global and Emacs." (jit-lock-register #'ggtags-abbreviate-files) (add-hook 'compilation-filter-hook 'ggtags-global-filter nil 'local) (add-hook 'compilation-finish-functions 'ggtags-handle-single-match nil t) - (add-hook 'kill-buffer-hook (lambda () (ggtags-navigation-mode -1)) nil t) - (define-key ggtags-global-mode-map "\M-o" 'visible-mode)) + (add-hook 'kill-buffer-hook (lambda () (ggtags-navigation-mode -1)) nil t)) ;; NOTE: Need this to avoid putting menu items in ;; `emulation-mode-map-alists', which creates double entries. See