diff options
| author | Richard M. Stallman | 2002-04-01 16:37:41 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-04-01 16:37:41 +0000 |
| commit | 4f4fada2f5bf3e9319952d94c0bfd5fa4b979fc7 (patch) | |
| tree | 0f177d3c0945418dde45f5f365629c8b92333d6e | |
| parent | ca1b34c8c19700287d893c6a5eeb53b68c69ed29 (diff) | |
| download | emacs-4f4fada2f5bf3e9319952d94c0bfd5fa4b979fc7.tar.gz emacs-4f4fada2f5bf3e9319952d94c0bfd5fa4b979fc7.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 9 | ||||
| -rw-r--r-- | lisp/ChangeLog | 9 |
2 files changed, 18 insertions, 0 deletions
| @@ -740,8 +740,10 @@ When the non-blocking connect completes, the sentinel is called with | |||
| 740 | the status matching "open" or "failed". | 740 | the status matching "open" or "failed". |
| 741 | 741 | ||
| 742 | *** New function open-network-stream-server. | 742 | *** New function open-network-stream-server. |
| 743 | MORE 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. |
| 746 | MORE 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) |
| 747 | for a network process. Using the new optional KEY arg, the complete list | 749 | for a network process. Using the new optional KEY arg, the complete list |
| @@ -784,6 +786,13 @@ or the header line. | |||
| 784 | These functions are like `plist-get' and `plist-put' except that they | 786 | These functions are like `plist-get' and `plist-put' except that they |
| 785 | compare the property name using `equal' rather than `eq'. | 787 | compare the property name using `equal' rather than `eq'. |
| 786 | 788 | ||
| 789 | ** New function `tool-bar-local-item-from-menu' | ||
| 790 | |||
| 791 | The `tool-bar-add-item-from-menu' most not be used (as previously | ||
| 792 | recommended) for making entries in the tool bar for local keymaps. | ||
| 793 | Instead, use the function `tool-bar-local-item-from-menu', which lets | ||
| 794 | you 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 | ||
| 9 | 2002-04-01 Richard M. Stallman <rms@gnu.org> | 9 | 2002-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 | ||