aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2008-04-23 16:47:45 +0000
committerStefan Monnier <[email protected]>2008-04-23 16:47:45 +0000
commit1b2679cf656b59c55ad631f4c576f5150ab5cf1d (patch)
treedb76533a5d489f230c4283c4f72ed21a3ddf082c
parent419625f7f62a926e1eb27bd581511fd08021e183 (diff)
Replace table-cell-horizontal-char -> table-cell-horizontal-chars.
-rw-r--r--doc/emacs/text.texi8
-rw-r--r--lisp/textmodes/table.el3
2 files changed, 6 insertions, 5 deletions
diff --git a/doc/emacs/text.texi b/doc/emacs/text.texi
index 5bba361183..1c4a506475 100644
--- a/doc/emacs/text.texi
+++ b/doc/emacs/text.texi
@@ -2502,10 +2502,10 @@ characters. These variables specify those characters:
Holds the character used for vertical lines. The default value is
@samp{|}.
-@vindex table-cell-horizontal-char
-@item table-cell-horizontal-char
-Holds the character used for horizontal lines. The default value is
-@samp{-}.
+@vindex table-cell-horizontal-chars
+@item table-cell-horizontal-chars
+Holds the characters used for horizontal lines. The default value is
+@samp{"-="}.
@vindex table-cell-intersection-char
@item table-cell-intersection-char
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el
index 2aea24cede..39f3eefe79 100644
--- a/lisp/textmodes/table.el
+++ b/lisp/textmodes/table.el
@@ -395,7 +395,8 @@
;; lines. A valid character of a cell's vertical border is either
;; table-cell-vertical-char `|' or table-cell-intersection-char `+'.
;; A valid character of a cell's horizontal border is either
-;; table-cell-horizontal-char `-' or table-cell-intersection-char `+'.
+;; one of table-cell-horizontal-chars (`-' or `=')
+;; or table-cell-intersection-char `+'.
;; A valid character of the four corners of a cell must be
;; table-cell-intersection-char `+'. A cell must contain at least one
;; character space inside. There is no restriction about the contents