diff options
| author | Richard M. Stallman | 2005-05-14 13:18:57 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-05-14 13:18:57 +0000 |
| commit | 7404c0d4c3eeed6cc280f88d0c48f092f3c7d54f (patch) | |
| tree | 172c1da6108d89dbbdc16a893a9a8f7df5058829 | |
| parent | 9bae34bfb0c48dff225673f46ef35b91953ef6d5 (diff) | |
| download | emacs-7404c0d4c3eeed6cc280f88d0c48f092f3c7d54f.tar.gz emacs-7404c0d4c3eeed6cc280f88d0c48f092f3c7d54f.zip | |
Write "Lisp" properly. Other cleanups.
| -rw-r--r-- | etc/NEWS | 24 |
1 files changed, 12 insertions, 12 deletions
| @@ -31,7 +31,7 @@ when you run configure. This requires Gtk+ 2.0 or newer. This port | |||
| 31 | provides a way to display multilingual text in menus (with some caveats). | 31 | provides a way to display multilingual text in menus (with some caveats). |
| 32 | 32 | ||
| 33 | --- | 33 | --- |
| 34 | ** The `emacsserver' program has been removed, replaced with elisp code. | 34 | ** The `emacsserver' program has been removed, replaced with Lisp code. |
| 35 | 35 | ||
| 36 | --- | 36 | --- |
| 37 | ** By default, Emacs now uses a setgid helper program to update game | 37 | ** By default, Emacs now uses a setgid helper program to update game |
| @@ -2300,7 +2300,7 @@ not executing. | |||
| 2300 | 2300 | ||
| 2301 | Minor Improvements | 2301 | Minor Improvements |
| 2302 | 2302 | ||
| 2303 | *** The STARTTLS elisp wrapper (starttls.el) can now use GNUTLS | 2303 | *** The STARTTLS wrapper (starttls.el) can now use GNUTLS |
| 2304 | instead of the OpenSSL based "starttls" tool. For backwards | 2304 | instead of the OpenSSL based "starttls" tool. For backwards |
| 2305 | compatibility, it prefers "starttls", but you can toggle | 2305 | compatibility, it prefers "starttls", but you can toggle |
| 2306 | `starttls-use-gnutls' to switch to GNUTLS (or simply remove the | 2306 | `starttls-use-gnutls' to switch to GNUTLS (or simply remove the |
| @@ -2806,7 +2806,7 @@ using strokes as an input method. | |||
| 2806 | 2806 | ||
| 2807 | +++ | 2807 | +++ |
| 2808 | *** The `emacsclient' command understands the options `--eval' and | 2808 | *** The `emacsclient' command understands the options `--eval' and |
| 2809 | `--display' which tell Emacs respectively to evaluate the given elisp | 2809 | `--display' which tell Emacs respectively to evaluate the given Lisp |
| 2810 | expression and to use the given display when visiting files. | 2810 | expression and to use the given display when visiting files. |
| 2811 | 2811 | ||
| 2812 | +++ | 2812 | +++ |
| @@ -3891,9 +3891,9 @@ create a stream or datagram server inside emacs. | |||
| 3891 | To test for the availability of a given feature, use featurep like this: | 3891 | To test for the availability of a given feature, use featurep like this: |
| 3892 | (featurep 'make-network-process '(:type datagram)) | 3892 | (featurep 'make-network-process '(:type datagram)) |
| 3893 | 3893 | ||
| 3894 | *** Original open-network-stream is now emulated using make-network-process. | 3894 | *** The old `open-network-stream' now uses `make-network-process'. |
| 3895 | 3895 | ||
| 3896 | *** New function open-network-stream-nowait. | 3896 | *** New function `open-network-stream-nowait'. |
| 3897 | 3897 | ||
| 3898 | This function initiates a non-blocking connect and returns immediately | 3898 | This function initiates a non-blocking connect and returns immediately |
| 3899 | without waiting for the connection to be established. It takes the | 3899 | without waiting for the connection to be established. It takes the |
| @@ -3901,21 +3901,21 @@ filter and sentinel functions as arguments; when the non-blocking | |||
| 3901 | connect completes, the sentinel is called with a status string | 3901 | connect completes, the sentinel is called with a status string |
| 3902 | matching "open" or "failed". | 3902 | matching "open" or "failed". |
| 3903 | 3903 | ||
| 3904 | *** New function open-network-stream-server. | 3904 | *** New function `open-network-stream-server'. |
| 3905 | 3905 | ||
| 3906 | This function creates a network server process for a TCP service. | 3906 | This function creates a network server process for a TCP service. |
| 3907 | When a client connects to the specified service, a new subprocess | 3907 | When a client connects to the specified service, a new subprocess |
| 3908 | is created to handle the new connection, and the sentinel function | 3908 | is created to handle the new connection, and the sentinel function |
| 3909 | is called for the new process. | 3909 | is called for the new process. |
| 3910 | 3910 | ||
| 3911 | *** New functions process-datagram-address and set-process-datagram-address. | 3911 | *** New functions `process-datagram-address', `set-process-datagram-address'. |
| 3912 | 3912 | ||
| 3913 | These functions are used with datagram-based network processes to get | 3913 | These functions are used with datagram-based network processes to get |
| 3914 | and set the current address of the remote partner. | 3914 | and set the current address of the remote partner. |
| 3915 | 3915 | ||
| 3916 | *** New function format-network-address. | 3916 | *** New function `format-network-address'. |
| 3917 | 3917 | ||
| 3918 | This function reformats the lisp representation of a network address | 3918 | This function reformats the Lisp representation of a network address |
| 3919 | to a printable string. For example, an IP address A.B.C.D and port | 3919 | to a printable string. For example, an IP address A.B.C.D and port |
| 3920 | number P is represented as a five element vector [A B C D P], and the | 3920 | number P is represented as a five element vector [A B C D P], and the |
| 3921 | printable string returned for this vector is "A.B.C.D:P". See the doc | 3921 | printable string returned for this vector is "A.B.C.D:P". See the doc |
| @@ -4617,7 +4617,7 @@ efficient. Since byte code from recent versions of XEmacs won't | |||
| 4617 | generally run in Emacs and vice versa, this optimization doesn't lose | 4617 | generally run in Emacs and vice versa, this optimization doesn't lose |
| 4618 | you anything. | 4618 | you anything. |
| 4619 | 4619 | ||
| 4620 | *** The local variable `no-byte-compile' in elisp files is now obeyed. | 4620 | *** The local variable `no-byte-compile' in Lisp files is now obeyed. |
| 4621 | 4621 | ||
| 4622 | --- | 4622 | --- |
| 4623 | *** When a Lisp file uses CL functions at run-time, compiling the file | 4623 | *** When a Lisp file uses CL functions at run-time, compiling the file |
| @@ -10688,8 +10688,8 @@ can make FCC copies more closely resemble copies that recipients get | |||
| 10688 | 10688 | ||
| 10689 | **** you can specify an arbitrary function for actually transmitting | 10689 | **** you can specify an arbitrary function for actually transmitting |
| 10690 | the message; included in feedmail are interfaces for /bin/[r]mail, | 10690 | the message; included in feedmail are interfaces for /bin/[r]mail, |
| 10691 | /usr/lib/sendmail, and elisp smtpmail; it's easy to write a new | 10691 | /usr/lib/sendmail, and Emacs Lisp smtpmail; it's easy to write a new |
| 10692 | function for something else (10-20 lines of elisp) | 10692 | function for something else (10-20 lines of Lisp code). |
| 10693 | 10693 | ||
| 10694 | ** Dired changes | 10694 | ** Dired changes |
| 10695 | 10695 | ||