1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

(align-rules-list): Use [ \t] instead of \s-

for column separators in text mode.
This commit is contained in:
Thien-Thi Nguyen 2005-12-20 13:59:16 +00:00
parent d74f241f38
commit 5a8854dda0

View File

@ -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)