From ef95d4d21ae9b7572be11d11be2376d64f0a6e4f Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 16 Aug 2015 01:11:29 -0700 Subject: [PATCH] Fix org-agenda-mode hook that was pointing to non-existent function imalison:disable-linum-mode --- dotfiles/emacs.d/init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 3326dbb2..799f6662 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -1060,7 +1060,7 @@ the same tree node, and the headline of the tree node in the Org-mode file." (setq org-mobile-directory "~/Dropbox/Apps/MobileOrg") (add-hook 'org-mode-hook 'imalison:disable-linum-mode) (add-hook 'org-mode-hook (lambda () (setq org-todo-key-trigger t))) - (add-hook 'org-agenda-mode-hook 'disable-linum-mode))) + (add-hook 'org-agenda-mode-hook 'imalison:disable-linum-mode))) (use-package clocker :ensure t)