]> code.delx.au - gnu-emacs-elpa/commitdiff
Remove trailing whitespace
authorPhilippe Vaucher <philippe@stvs.ch>
Thu, 16 Oct 2014 08:30:10 +0000 (10:30 +0200)
committerPhilippe Vaucher <philippe@stvs.ch>
Thu, 16 Oct 2014 08:30:10 +0000 (10:30 +0200)
README.md
aggressive-indent.el

index 753e159ce97411b8250e3db3694fbdbd4e5ce7f3..93247f324980df0a3ae625db9fe9d83b2dd0e8ed 100644 (file)
--- a/README.md
+++ b/README.md
@@ -27,9 +27,9 @@ every programming mode, you can do something like:
 
     (global-aggressive-indent-mode 1)
     (add-to-list 'aggressive-indent-excluded-modes 'html-mode)
-    
+
 ### Manual Installation ###
-    
+
 If you don't want to install from Melpa, you can download it manually,
 place it in your `load-path` and require it with
 
index 31a2c0b8d7f4eec534172c25ff4037bf318f0f2f..b3ca3d4937aed16d275fe136004787db585178a4 100644 (file)
 ;; Separator: -
 
 ;;; Commentary:
-;; 
+;;
 ;; `electric-indent-mode' is enough to keep your code nicely aligned when
 ;; all you do is type. However, once you start shifting blocks around,
 ;; transposing lines, or slurping and barfing sexps, indentation is bound
 ;; to go wrong.
-;; 
+;;
 ;; `aggressive-indent-mode' is a minor mode that keeps your code always
 ;; indented. It reindents after every command, making it more reliable
 ;; than `electric-indent-mode'.
-;; 
+;;
 ;; ### Instructions ###
-;; 
+;;
 ;; This package is available fom Melpa, you may install it by calling
-;; 
+;;
 ;;     M-x package-install RET aggressive-indent
-;; 
+;;
 ;; Then activate it with
-;; 
+;;
 ;;     (add-hook 'emacs-lisp-mode-hook #'aggressive-indent-mode)
 ;;     (add-hook 'css-mode-hook #'aggressive-indent-mode)
-;; 
+;;
 ;; You can use this hook on any mode you want, `aggressive-indent' is not
 ;; exclusive to emacs-lisp code. In fact, if you want to turn it on for
 ;; every programming mode, you can do something like:
-;; 
+;;
 ;;     (global-aggressive-indent-mode 1)
 ;;     (add-to-list 'aggressive-indent-excluded-modes 'html-mode)
-;;     
+;;
 ;; ### Manual Installation ###
-;;     
+;;
 ;; If you don't want to install from Melpa, you can download it manually,
 ;; place it in your `load-path' and require it with
-;; 
+;;
 ;;     (require 'aggressive-indent)
 
 ;;; Instructions:
@@ -156,11 +156,11 @@ Throw an error if parentheses are unbalanced."
     (remove-hook 'post-command-hook #'-softly-indent-defun 'local)))
 
 :autoload
-(define-globalized-minor-mode global-aggressive-indent-mode 
+(define-globalized-minor-mode global-aggressive-indent-mode
   mode mode)
 
 :autoload
-(defalias #'aggressive-indent-global-mode 
+(defalias #'aggressive-indent-global-mode
   #'global-aggressive-indent-mode)
 )