diff options
| author | Juanma Barranquero | 2010-07-30 02:50:13 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2010-07-30 02:50:13 +0200 |
| commit | ad9ae06519f6f4eb0be14f9f09101b349f0fe462 (patch) | |
| tree | 6b0b48ff188751e18fb2ea03161f40356351beb7 | |
| parent | e8bf5266a29f42c8dbc577a6f19b724b6e53c2b5 (diff) | |
| download | emacs-ad9ae06519f6f4eb0be14f9f09101b349f0fe462.tar.gz emacs-ad9ae06519f6f4eb0be14f9f09101b349f0fe462.zip | |
align.el: Doc fixes.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/align.el | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 670f07c2683..f2450f22ea6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-07-30 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * align.el (align-default-spacing): Doc fix. | ||
| 4 | (align-region-heuristic, align-regexp): Fix typos in docstrings. | ||
| 5 | |||
| 1 | 2010-07-23 Juanma Barranquero <lekktu@gmail.com> | 6 | 2010-07-23 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 7 | ||
| 3 | * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494). | 8 | * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494). |
diff --git a/lisp/align.el b/lisp/align.el index 83ed0f4693a..9d811327021 100644 --- a/lisp/align.el +++ b/lisp/align.el | |||
| @@ -140,8 +140,8 @@ | |||
| 140 | "An integer that represents the default amount of padding to use. | 140 | "An integer that represents the default amount of padding to use. |
| 141 | If `align-to-tab-stop' is non-nil, this will represent the number of | 141 | If `align-to-tab-stop' is non-nil, this will represent the number of |
| 142 | tab stops to use for alignment, rather than the number of spaces. | 142 | tab stops to use for alignment, rather than the number of spaces. |
| 143 | Each alignment rule can optionally override both this variable. See | 143 | Each alignment rule can optionally override both this variable and |
| 144 | `align-mode-alist'." | 144 | `align-to-tab-stop'. See `align-rules-list'." |
| 145 | :type 'integer | 145 | :type 'integer |
| 146 | :group 'align) | 146 | :group 'align) |
| 147 | 147 | ||
| @@ -157,8 +157,8 @@ Since each alignment rule can possibly have its own set of alignment | |||
| 157 | sections (whenever `align-region-separate' is non-nil, and not a | 157 | sections (whenever `align-region-separate' is non-nil, and not a |
| 158 | string), this heuristic is used to determine how far before and after | 158 | string), this heuristic is used to determine how far before and after |
| 159 | point we should search in looking for a region separator. Larger | 159 | point we should search in looking for a region separator. Larger |
| 160 | values can mean slower perform in large files, although smaller values | 160 | values can mean slower performance in large files, although smaller |
| 161 | may cause unexpected behavior at times." | 161 | values may cause unexpected behavior at times." |
| 162 | :type 'integer | 162 | :type 'integer |
| 163 | :group 'align) | 163 | :group 'align) |
| 164 | 164 | ||
| @@ -926,7 +926,7 @@ align them so that the opening parentheses would line up: | |||
| 926 | Joe (123) 456-7890 | 926 | Joe (123) 456-7890 |
| 927 | 927 | ||
| 928 | There is no predefined rule to handle this, but you could easily do it | 928 | There is no predefined rule to handle this, but you could easily do it |
| 929 | using a REGEXP like \"(\". All you would have to do is to mark the | 929 | using a REGEXP like \"(\". All you would have to do is to mark the |
| 930 | region, call `align-regexp' and type in that regular expression." | 930 | region, call `align-regexp' and type in that regular expression." |
| 931 | (interactive | 931 | (interactive |
| 932 | (append | 932 | (append |