aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-04-01 16:37:41 +0000
committerRichard M. Stallman2002-04-01 16:37:41 +0000
commit4f4fada2f5bf3e9319952d94c0bfd5fa4b979fc7 (patch)
tree0f177d3c0945418dde45f5f365629c8b92333d6e
parentca1b34c8c19700287d893c6a5eeb53b68c69ed29 (diff)
downloademacs-4f4fada2f5bf3e9319952d94c0bfd5fa4b979fc7.tar.gz
emacs-4f4fada2f5bf3e9319952d94c0bfd5fa4b979fc7.zip
*** empty log message ***
-rw-r--r--etc/NEWS9
-rw-r--r--lisp/ChangeLog9
2 files changed, 18 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 0bd04163dbd..a6ca59e5686 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -740,8 +740,10 @@ When the non-blocking connect completes, the sentinel is called with
740the status matching "open" or "failed". 740the status matching "open" or "failed".
741 741
742*** New function open-network-stream-server. 742*** New function open-network-stream-server.
743MORE INFO NEEDED HERE.
743 744
744*** New functions process-datagram-address and set-process-datagram-address. 745*** New functions process-datagram-address and set-process-datagram-address.
746MORE INFO NEEDED HERE.
745 747
746*** By default, the function process-contact still returns (HOST SERVICE) 748*** By default, the function process-contact still returns (HOST SERVICE)
747for a network process. Using the new optional KEY arg, the complete list 749for a network process. Using the new optional KEY arg, the complete list
@@ -784,6 +786,13 @@ or the header line.
784These functions are like `plist-get' and `plist-put' except that they 786These functions are like `plist-get' and `plist-put' except that they
785compare the property name using `equal' rather than `eq'. 787compare the property name using `equal' rather than `eq'.
786 788
789** New function `tool-bar-local-item-from-menu'
790
791The `tool-bar-add-item-from-menu' most not be used (as previously
792recommended) for making entries in the tool bar for local keymaps.
793Instead, use the function `tool-bar-local-item-from-menu', which lets
794you specify the map to use as an argument.
795
787+++ 796+++
788** The function `atan' now accepts an optional second argument. 797** The function `atan' now accepts an optional second argument.
789 798
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6b1a203df2a..1fee51b822c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -8,6 +8,15 @@
8 8
92002-04-01 Richard M. Stallman <rms@gnu.org> 92002-04-01 Richard M. Stallman <rms@gnu.org>
10 10
11 * info.el (info-tool-bar-map): Use tool-bar-local-item-from-menu.
12
13 * toolbar/tool-bar.el (tool-bar-local-item): Renamed from
14 tool-bar-add-item, and new arg MAP.
15 (tool-bar-add-item): Now calls tool-bar-local-item.
16 (tool-bar-local-item-from-menu): Renamed from
17 tool-bar-add-item-from-menu, and new arg IN-MAP.
18 (tool-bar-add-item-from-menu): Now calls tool-bar-local-item-from-menu.
19
11 * help-fns.el (help-with-tutorial): Allow various ways 20 * help-fns.el (help-with-tutorial): Allow various ways
12 to specify the text in the [...] line, in handling the <...> line. 21 to specify the text in the [...] line, in handling the <...> line.
13 22