aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorPaul Eggert2020-01-05 11:48:59 -0800
committerPaul Eggert2020-01-05 11:50:31 -0800
commit088bfcc2d80eed44864147f3491eff69e4eb5cd8 (patch)
treea57599fb3064d09c38eec4ddd9cded8a3df72e6c /lisp/textmodes
parent448df8fec7a7fb3fe558749591e657e8a84cb46b (diff)
downloademacs-088bfcc2d80eed44864147f3491eff69e4eb5cd8.tar.gz
emacs-088bfcc2d80eed44864147f3491eff69e4eb5cd8.zip
Move “Fix some broken conditional forms” to master
Revert 2020-01-04T19:17:12Z!eggert@cs.ucla.edu which recently I installed into the emacs-27 branch by mistake. These patches are now on master instead (via merging). Do not merge to master.
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)