aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorEli Zaretskii2005-05-21 11:38:21 +0000
committerEli Zaretskii2005-05-21 11:38:21 +0000
commit6e50f7e0d1258a2dd60fb5e1a60a71cf016b6c96 (patch)
treece42685e89782d9cbbafcae2643ad1b61acc2845 /lisp
parent9110ca1185c7d9dd8c621a07c341f79453e9d638 (diff)
downloademacs-6e50f7e0d1258a2dd60fb5e1a60a71cf016b6c96.tar.gz
emacs-6e50f7e0d1258a2dd60fb5e1a60a71cf016b6c96.zip
(table-disable-menu): Add separator as a string so that tmm doesn't create
a completion entry for it.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/textmodes/table.el2
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 805402db2a6..b71c3a1d3f2 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12005-05-21 Matt Hodges <MPHodges@member.fsf.org>
2
3 * calendar/cal-menu.el (cal-menu-update): Add separator as a
4 string so that tmm doesn't create a completion entry for it.
5
6 * textmodes/table.el (table-disable-menu): Ditto.
7
12005-05-21 Richard M. Stallman <rms@gnu.org> 82005-05-21 Richard M. Stallman <rms@gnu.org>
2 9
3 * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents. 10 * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el
index 118ca3bb3fa..430a196166f 100644
--- a/lisp/textmodes/table.el
+++ b/lisp/textmodes/table.el
@@ -1272,7 +1272,7 @@ This is always set to nil at the entry to `table-with-cache-buffer' before execu
1272 (if (featurep 'xemacs) 1272 (if (featurep 'xemacs)
1273 (progn 1273 (progn
1274 (easy-menu-add-item nil '("Tools") table-global-menu-map)) 1274 (easy-menu-add-item nil '("Tools") table-global-menu-map))
1275 (easy-menu-add-item (current-global-map) '("menu-bar" "tools") '("--")) 1275 (easy-menu-add-item (current-global-map) '("menu-bar" "tools") "--")
1276 (easy-menu-add-item (current-global-map) '("menu-bar" "tools") table-global-menu-map))) 1276 (easy-menu-add-item (current-global-map) '("menu-bar" "tools") table-global-menu-map)))
1277 1277
1278;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 1278;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;