# HG changeset patch # User Glenn Morris # Date 1245652910 0 # Node ID b3548b2342dc74c9e3c4982caf26b9506a20a90b # Parent f1303f5d7a0d5a645574d1f5485a6ae978f7aec8 Unindent and refill some doc-strings. diff -r f1303f5d7a0d -r b3548b2342dc lisp/fadr.el --- a/lisp/fadr.el Mon Jun 22 06:39:46 2009 +0000 +++ b/lisp/fadr.el Mon Jun 22 06:41:50 2009 +0000 @@ -75,9 +75,8 @@ (defmacro fadr-define-select (name regexp &optional doc filter) "Define a function NAME of one string argument which will - extract data from it using the first subgroup in REGEXP. If - FILTER is specified, it will be called with the resulting - string." +extract data from it using the first subgroup in REGEXP. If +FILTER is specified, it will be called with the resulting string." `(defun ,name (path) ,doc (let ((string (if (string-match ,regexp path) @@ -153,8 +152,7 @@ string)) (defun fadr-format (string object &rest objects) - "Format STRING with OBJECTS, then `fadr-expand' the result with -OBJECT." + "Format STRING with OBJECTS, then `fadr-expand' the result with OBJECT." (let ((new-string (apply 'format (append (list string) objects)))) (fadr-expand new-string object)))