aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/table.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el
index a33e9266b4b..4482e7d4d23 100644
--- a/lisp/textmodes/table.el
+++ b/lisp/textmodes/table.el
@@ -3206,7 +3206,11 @@ CALS (DocBook DTD):
3206 (while (and (re-search-forward "$" nil t) 3206 (while (and (re-search-forward "$" nil t)
3207 (not (eobp))) 3207 (not (eobp)))
3208 (insert "<br />") 3208 (insert "<br />")
3209 (forward-char 1)))) 3209 (forward-char 1)))
3210 (unless (and table-html-delegate-spacing-to-user-agent
3211 (progn
3212 (goto-char (point-min))
3213 (looking-at "\\s *\\'")))))
3210 ((eq language 'cals) 3214 ((eq language 'cals)
3211 (table--remove-eol-spaces (point-min) (point-max)) 3215 (table--remove-eol-spaces (point-min) (point-max))
3212 (if (re-search-forward "\\s +\\'" nil t) 3216 (if (re-search-forward "\\s +\\'" nil t)