|
@@ -492,7 +492,9 @@ nil When nil, the command tries to be smart and figure out the
|
|
|
((equal separator '(4)) "^\\|\"?[ \t]*,[ \t]*\"?")
|
|
|
((equal separator '(16)) "^\\|\t")
|
|
|
((integerp separator)
|
|
|
- (format "^ *\\| *\t *\\| \\{%d,\\}" separator))
|
|
|
+ (if (< separator 1)
|
|
|
+ (error "Number of spaces in separator must be >= 1")
|
|
|
+ (format "^ *\\| *\t *\\| \\{%d,\\}" separator)))
|
|
|
(t (error "This should not happen"))))
|
|
|
(while (re-search-forward re end t)
|
|
|
(replace-match "| " t t)))
|