]> code.delx.au - gnu-emacs-elpa/commitdiff
whitespace clean up
authorMichael Heerdegen <michael_heerdegen@web.de>
Fri, 25 Sep 2015 23:03:43 +0000 (01:03 +0200)
committerMichael Heerdegen <michael_heerdegen@web.de>
Sun, 11 Oct 2015 09:29:10 +0000 (11:29 +0200)
packages/el-search/el-search.el

index 9a27bcb15053447a793d710d9c700266a35cef1a..6e9fa5e082d40c21b55cf86b048367774225043b 100644 (file)
@@ -32,7 +32,7 @@
 ;; Introduction
 ;; ============
 ;;
-;; 
+;;
 ;; The main user entry point is the command `el-search-pattern'.  It
 ;; prompts for a `pcase' pattern and searches the current buffer for
 ;; expressions that are matched by it when read.  Point is put at the
 ;; Example: In some buffer you want to swap the two expressions at the
 ;; places of the first two arguments in all calls of function `foo',
 ;; so that e.g.
-;; 
+;;
 ;;   (foo 'a (* 2 (+ 3 4)) t)
-;;   
+;;
 ;; becomes
-;; 
+;;
 ;;   (foo (* 2 (+ 3 4)) 'a t).
-;;   
+;;
 ;; This will do it:
 ;;
 ;;    M-x el-search-query-replace RET