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,7 +1,11 @@
;;
;; core stuff - again shamelessly ripped from Emacs Prelude
;;
;;; siren-core.el --- jimeh's Emacs Siren: Core Siren functions.
;;; Commentary:
;; Core Siren functions used a bit all over the place. Some of them shamelessly
;; ripped from Emacs Prelude.
;;; Code:
(defun siren-smart-open-line-above ()
"Insert an empty line above the current line.
@@ -20,3 +24,4 @@ Position the cursor at it's beginning, according to the current mode."
(provide 'siren-core)
;;; siren-core.el ends here

View File

@@ -1,6 +1,12 @@
;;; siren-custom.el --- jimeh's Emacs Siren: Siren's customizable variables.
;;; Commentary:
;; Refinements of the core editing experience in Emacs.
;;
;; siren custom
;;
;; Shamelessly ripped from Emacs Prelude.
;;; Code:
(defcustom siren-yank-indent-threshold 1000
"Threshold (# chars) over which indentation does not automatically occur."
@@ -20,4 +26,5 @@ Only modes that don't derive from `prog-mode' should be listed here."
:group 'siren)
(provide 'siren-custom)
(provide 'siren-custom)
;;; siren-custom.el ends here

View File

@@ -1,6 +1,10 @@
;;
;; editor
;;
;;; siren-core.el --- jimeh's Emacs Siren: Editor settings.
;;; Commentary:
;; Default editor settings for Siren.
;;; Code:
;; Set default font
(if window-system
@@ -202,6 +206,5 @@ indent yanked text (with prefix arg don't indent)."
;; (diminish 'hs-minor-mode)
;; (diminish 'subword-mode)
(provide 'siren-editor)
;;; siren-editor.el ends here

View File

@@ -1,6 +1,11 @@
;;
;; env
;;
;;; siren-env.el --- jimeh's Emacs Siren: Environment variable setup.
;;; Commentary:
;; Setup for various environment variables to ensure external programs are
;; available.
;;; Code:
;; Nix package manager
(push "~/.nix-profile/bin" exec-path)
@@ -20,3 +25,4 @@
(provide 'siren-env)
;;; siren-env.el ends here

View File

@@ -1,6 +1,10 @@
;;
;; osx
;;
;;; siren-osx.el --- jimeh's Emacs Siren: OS X specific settings.
;;; Commentary:
;; OS X specific settings and tweaks for Siren.
;;; Code:
;; It's all in the Meta
(setq ns-function-modifier 'hyper)
@@ -8,5 +12,5 @@
;; Don't use OSX Native fullscreen mode
(setq ns-use-native-fullscreen nil)
(provide 'siren-osx)
(provide 'siren-osx)
;;; siren-osx.el ends here

View File

@@ -1,6 +1,10 @@
;;
;; packages
;;
;;; siren-packages.el --- jimeh's Emacs Siren: Core package setup
;;; Commentary:
;; Install and configure various packages that the core of Siren depends on.
;;; Code:
(require 'cl)
(require 'package)
@@ -66,5 +70,5 @@ Missing packages are installed automatically."
;; Install Melpa packages
(siren-install-packages)
(provide 'siren-packages)
;;; siren-packages.el ends here

View File

@@ -1,6 +1,10 @@
;;
;; ui
;;
;;; siren-ui.el --- jimeh's Emacs Siren: Emacs UI settings.
;;; Commentary:
;; Basic configuration of Emacs UI for Siren.
;;; Code:
;; the toolbar is just a waste of valuable screen estate
;; in a tty tool-bar-mode does not properly auto-load, and is
@@ -48,5 +52,5 @@
(setq sml/theme nil)
(add-hook 'after-init-hook #'sml/setup)
(provide 'siren-ui)
;;; siren-ui.el ends here