Mercurial > emacs
changeset 67698:fe96c1f121e3
(align-rules-list): Use [ \t] instead of \s-
for column separators in text mode.
author | Thien-Thi Nguyen <ttn@gnuvola.org> |
---|---|
date | Tue, 20 Dec 2005 13:59:16 +0000 |
parents | c68ea88eaa16 |
children | 642ccf723d8f |
files | lisp/align.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/align.el Tue Dec 20 09:02:23 2005 +0000 +++ b/lisp/align.el Tue Dec 20 13:59:16 2005 +0000 @@ -559,7 +559,7 @@ ;; 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)