From: Thien-Thi Nguyen Date: Tue, 20 Dec 2005 13:59:16 +0000 (+0000) Subject: (align-rules-list): Use [ \t] instead of \s- X-Git-Tag: emacs-pretest-22.0.90~5168 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5a8854dda064c973f55f9432a52c9361f63de659;p=emacs.git (align-rules-list): Use [ \t] instead of \s- for column separators in text mode. --- 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)