aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes/table.el
diff options
context:
space:
mode:
authorRichard M. Stallman2007-01-06 00:21:05 +0000
committerRichard M. Stallman2007-01-06 00:21:05 +0000
commit047ecb4e507a01eb5bbc91d2c62a89cb9f970c99 (patch)
tree8e765ab5869aca9b82d517dcde4301690b662656 /lisp/textmodes/table.el
parent2dca7106aa894487c6041a45b5af4323363e149b (diff)
downloademacs-047ecb4e507a01eb5bbc91d2c62a89cb9f970c99.tar.gz
emacs-047ecb4e507a01eb5bbc91d2c62a89cb9f970c99.zip
(table--warn-incompatibility):
Use display-warning instead of momentary-string-display.
Diffstat (limited to 'lisp/textmodes/table.el')
-rw-r--r--lisp/textmodes/table.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el
index 70bd3a07a9f..c712524396f 100644
--- a/lisp/textmodes/table.el
+++ b/lisp/textmodes/table.el
@@ -6,7 +6,7 @@
6;; Keywords: wp, convenience 6;; Keywords: wp, convenience
7;; Author: Takaaki Ota <Takaaki.Ota@am.sony.com> 7;; Author: Takaaki Ota <Takaaki.Ota@am.sony.com>
8;; Created: Sat Jul 08 2000 13:28:45 (PST) 8;; Created: Sat Jul 08 2000 13:28:45 (PST)
9;; Revised: Thu Jul 20 2006 17:30:09 (PDT) 9;; Revised: Wed Jan 03 2007 13:23:46 (PST)
10 10
11;; This file is part of GNU Emacs. 11;; This file is part of GNU Emacs.
12 12
@@ -5358,7 +5358,7 @@ is non-nil. The warning is done only once per session for each item."
5358 (cond ((and (featurep 'xemacs) 5358 (cond ((and (featurep 'xemacs)
5359 (not (get 'table-disable-incompatibility-warning 'xemacs))) 5359 (not (get 'table-disable-incompatibility-warning 'xemacs)))
5360 (put 'table-disable-incompatibility-warning 'xemacs t) 5360 (put 'table-disable-incompatibility-warning 'xemacs t)
5361 (momentary-string-display 5361 (display-warning 'table
5362 " 5362 "
5363*** Warning *** 5363*** Warning ***
5364 5364
@@ -5369,12 +5369,12 @@ such that a border characters dissolve into adjacent cells. Please be
5369aware of this. 5369aware of this.
5370 5370
5371" 5371"
5372 (save-excursion (forward-line 1) (point)))) 5372 :warning))
5373 ((and (boundp 'flyspell-mode) 5373 ((and (boundp 'flyspell-mode)
5374 flyspell-mode 5374 flyspell-mode
5375 (not (get 'table-disable-incompatibility-warning 'flyspell))) 5375 (not (get 'table-disable-incompatibility-warning 'flyspell)))
5376 (put 'table-disable-incompatibility-warning 'flyspell t) 5376 (put 'table-disable-incompatibility-warning 'flyspell t)
5377 (momentary-string-display 5377 (display-warning 'table
5378 " 5378 "
5379*** Warning *** 5379*** Warning ***
5380 5380
@@ -5383,7 +5383,7 @@ package. The flyspell version 1.5d at http://kaolin.unice.fr/~serrano
5383works better than the previous versions however not fully compatible. 5383works better than the previous versions however not fully compatible.
5384 5384
5385" 5385"
5386 (save-excursion (forward-line 1) (point)))) 5386 :warning))
5387 ))) 5387 )))
5388 5388
5389(defun table--cell-blank-str (&optional n) 5389(defun table--cell-blank-str (&optional n)