diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2005-12-20 13:59:16 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2005-12-20 13:59:16 +0000 |
commit | 5a8854dda064c973f55f9432a52c9361f63de659 (patch) | |
tree | 5f67210f4bed82e074e0d4532427fcc32c25a824 | |
parent | d74f241f381d6749760f0a7f4248dbd337c7ecb8 (diff) | |
download | emacs-5a8854dda064c973f55f9432a52c9361f63de659.tar.gz |
(align-rules-list): Use [ \t] instead of \s-
for column separators in text mode.
-rw-r--r-- | lisp/align.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/align.el b/lisp/align.el index 122ce2f0f88..f63085011b7 100644 --- a/lisp/align.el +++ b/lisp/align.el @@ -559,7 +559,7 @@ The possible settings for `align-region-separate' are: ;; With a numeric prefix argument, or C-u, space delimited text ;; tables will be aligned. (text-column - (regexp . "\\(^\\|\\S-\\)\\(\\s-+\\)\\(\\S-\\|$\\)") + (regexp . "\\(^\\|\\S-\\)\\([ \t]+\\)\\(\\S-\\|$\\)") (group . 2) (modes . align-text-modes) (repeat . t) |