Change header/footer comment of all files to make elisp happy

This commit is contained in:
2016-01-31 10:39:26 +00:00
parent b31ce521c8
commit e71ed5fc4e
67 changed files with 544 additions and 279 deletions

View File

@@ -1,6 +1,10 @@
;;
;; scroll-half-screen
;;
;;; siren-scroll-half-screen.el --- jimeh's Emacs Siren: scroll-half-screen.
;;; Commentary:
;; Scroll up/down M-v/C-v half a screen instead of a full screen.
;;; Code:
;; Scroll half a screen when using scroll-up and scroll-down functions.
(defadvice scroll-up (around half-window activate)
@@ -13,5 +17,5 @@
(max 1 (/ (1- (window-height (selected-window))) 2)))
ad-do-it)
(provide 'siren-scroll-half-screen)
(provide 'siren-scroll-half-screen)
;;; siren-scroll-half-screen.el ends here