Improve some comments

This commit is contained in:
Tom Willemse 2013-04-15 00:12:00 +02:00
parent 881a2bb3e5
commit 4e184a5d51

View file

@ -1,5 +1,5 @@
;;; Turn the menu, scroll-bar and tool-bar off quickly, so they don't ;;; Turn the menu, scroll-bar and tool-bar off quickly, emacs startup
;;; jump around as much. ;;; isn't as jittery.
(menu-bar-mode -1) (menu-bar-mode -1)
(scroll-bar-mode -1) (scroll-bar-mode -1)
(tool-bar-mode -1) (tool-bar-mode -1)
@ -13,7 +13,9 @@ functionality deferred to a point after Emacs has initialized and
package.el is loaded anyway." package.el is loaded anyway."
`(add-hook 'emacs-startup-hook #'(lambda () ,@body))) `(add-hook 'emacs-startup-hook #'(lambda () ,@body)))
;;; Load my very own theme. ;;; Load my very own theme. Wait until after Emacs initialization has
;;; completed so we can be sure that `package-initialize' has been
;;; called and the theme should be autoloaded.
(eval-after-init (load-theme 'yoshi t)) (eval-after-init (load-theme 'yoshi t))
;;; Add some project directories and my site-lisp directory to the ;;; Add some project directories and my site-lisp directory to the