diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2003-02-18 11:17:11 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2003-02-18 11:17:11 +0000 |
commit | 4fb8125073b84c5f9bb3593a44089f2c91ffc6d2 (patch) | |
tree | 3a30ca8b57a6deee14b202a714c5e3bd5af5bfdd /lisp/textmodes | |
parent | 64bc2e83e5585baa5bb3648a31746de640f479c8 (diff) | |
download | emacs-4fb8125073b84c5f9bb3593a44089f2c91ffc6d2.tar.gz |
(table-generate-source): Use ?\\ instead of space in "work in progress" message.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/table.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el index 2b3c2565ee9..db5b9a7c35d 100644 --- a/lisp/textmodes/table.el +++ b/lisp/textmodes/table.el @@ -5,7 +5,7 @@ ;; Keywords: wp, convenience ;; Author: Takaaki Ota <Takaaki.Ota@am.sony.com> ;; Created: Sat Jul 08 2000 13:28:45 (PST) -;; Revised: Thu Aug 15 2002 14:02:14 (PDT) +;; Revised: mar feb 18 2003 10:03:18 (Romance Standard Time) ;; This file is part of GNU Emacs. @@ -3039,7 +3039,7 @@ CALS (DocBook DTD): (setq col-list (cons (car (table--get-coordinate (car starting-cell))) nil)) (setq row-list (cons (cdr (table--get-coordinate (car starting-cell))) nil)) (setq i 0) - (let ((wheel [?- ?\ ?| ?/])) + (let ((wheel [?- ?\\ ?| ?/])) (while (progn (if (interactive-p) |