|
@@ -1840,9 +1840,7 @@ When it is nil, all comments will be removed."
|
|
|
(goto-char (point-min))
|
|
|
(while (re-search-forward "^[ \t]*|" nil t)
|
|
|
(beginning-of-line 1)
|
|
|
- (if (or (looking-at "[ \t]*| *[!_^] *|")
|
|
|
- (and (looking-at "[ \t]*|\\( *\\(<[0-9]+>\\|<[rl]>\\|<[rl][0-9]+>\\)? *|\\)+[ \t]*$")
|
|
|
- (not (looking-at ".*?| *[^ <|\n]"))))
|
|
|
+ (if (looking-at "[ \t]*| *[!_^] *|")
|
|
|
(delete-region (max (point-min) (1- (point-at-bol)))
|
|
|
(point-at-eol))
|
|
|
(end-of-line 1))))
|