diff options
| author | Richard M. Stallman | 2003-04-09 01:41:03 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-04-09 01:41:03 +0000 |
| commit | b0ada1471a13b0738dcfcda5ca781151aa4bbc29 (patch) | |
| tree | 3e3bf49a48a7dd541a3380dc0d5a152807cc1cab | |
| parent | 95c5b8fc6c15c013dd9345442fa223a5747e666f (diff) | |
| download | emacs-b0ada1471a13b0738dcfcda5ca781151aa4bbc29.tar.gz emacs-b0ada1471a13b0738dcfcda5ca781151aa4bbc29.zip | |
*** empty log message ***
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | etc/NEWS | 16 | ||||
| -rw-r--r-- | lisp/ChangeLog | 60 | ||||
| -rw-r--r-- | lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 6 |
5 files changed, 85 insertions, 5 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2003-04-08 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * configure.in: Put #include of jpeglib.h at start of line. | ||
| 4 | |||
| 1 | 2003-04-06 Francesco Potort,Al(B <pot@gnu.org> | 5 | 2003-04-06 Francesco Potort,Al(B <pot@gnu.org> |
| 2 | 6 | ||
| 3 | * configure.in: Use the same configuration for all aix5, not just | 7 | * configure.in: Use the same configuration for all aix5, not just |
| @@ -318,11 +318,12 @@ command-line options to feed to TeX, and `tex-start-commands' which should hold | |||
| 318 | TeX commands to use at startup. | 318 | TeX commands to use at startup. |
| 319 | 319 | ||
| 320 | +++ | 320 | +++ |
| 321 | ** New display feature: focus follows mouse. If you set the variable | 321 | ** New display feature: focus follows the mouse from one Emacs window |
| 322 | mouse-autoselect-window to non-nil value, moving the mouse to a different | 322 | to another, even within a frame. If you set the variable |
| 323 | Emacs window will select that window (minibuffer window can be selected | 323 | mouse-autoselect-window to non-nil value, moving the mouse to a |
| 324 | only when it is active). The default is nil, so that this feature is not | 324 | different Emacs window will select that window (minibuffer window can |
| 325 | enabled. | 325 | be selected only when it is active). The default is nil, so that this |
| 326 | feature is not enabled. | ||
| 326 | 327 | ||
| 327 | +++ | 328 | +++ |
| 328 | ** The new command `describe-char' (C-u C-x =) pops up a buffer with | 329 | ** The new command `describe-char' (C-u C-x =) pops up a buffer with |
| @@ -1183,6 +1184,11 @@ numbers. For instance, (number-sequence 4 9) returns (4 5 6 7 8 9). | |||
| 1183 | By default, the separation is 1, but you can specify a different separation | 1184 | By default, the separation is 1, but you can specify a different separation |
| 1184 | as the third argument. (number-sequence 1.5 6 2) returns (1.5 3.5 5.5). | 1185 | as the third argument. (number-sequence 1.5 6 2) returns (1.5 3.5 5.5). |
| 1185 | 1186 | ||
| 1187 | ** `file-chase-links' now takes an optional second argument LIMIT which | ||
| 1188 | specifies the maximum number of links to chase through. If after that | ||
| 1189 | many iterations the file name obtained is still a symbolic link, | ||
| 1190 | `file-chase-links' returns it anyway. | ||
| 1191 | |||
| 1186 | ** `set-fontset-font', `fontset-info', `fontset-font' now operate on | 1192 | ** `set-fontset-font', `fontset-info', `fontset-font' now operate on |
| 1187 | the default fontset if the argument NAME is nil.. | 1193 | the default fontset if the argument NAME is nil.. |
| 1188 | 1194 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f0f8092aafd..196669913f7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,20 @@ | |||
| 1 | 2003-04-08 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * subr.el (minor-mode-list): New variable. | ||
| 4 | (add-minor-mode): Add to it. | ||
| 5 | |||
| 6 | * files.el (file-chase-links): New arg LIMIT. | ||
| 7 | After that many iterations, just return what we've got. | ||
| 8 | |||
| 9 | * map-ynp.el (map-y-or-n-p): When formatting chars in ACTION-ALIST, | ||
| 10 | use single-key-description. | ||
| 11 | |||
| 12 | * emacs-lisp/lisp-mode.el (last-sexp-toggle-display): | ||
| 13 | At end of buffer, just call `newline'. | ||
| 14 | |||
| 15 | * mail/rmailsum.el (rmail-make-basic-summary-line): If there's | ||
| 16 | no From field, still try to use the To field. | ||
| 17 | |||
| 1 | 2003-04-09 Kenichi Handa <handa@m17n.org> | 18 | 2003-04-09 Kenichi Handa <handa@m17n.org> |
| 2 | 19 | ||
| 3 | * international/mule-diag.el (print-coding-system-briefly): If | 20 | * international/mule-diag.el (print-coding-system-briefly): If |
| @@ -70,6 +87,49 @@ | |||
| 70 | * emacs-lisp/lisp-mode.el (last-sexp-toggle-display): | 87 | * emacs-lisp/lisp-mode.el (last-sexp-toggle-display): |
| 71 | Correct the starting point for previous-single-property-change. | 88 | Correct the starting point for previous-single-property-change. |
| 72 | 89 | ||
| 90 | 2003-04-06 Lars Hansen <larsh@math.ku.dk> | ||
| 91 | |||
| 92 | * desktop.el: Handle multiple desktop files in different dirs. | ||
| 93 | Other cleanups. | ||
| 94 | Command line option --no-desktop introduced. | ||
| 95 | (desktop-read): Record buffers in the desktop file in | ||
| 96 | the same order as that in the buffer list, | ||
| 97 | (desktop-save): Put buffers in the order given in desktop file, | ||
| 98 | regardless of what handlers do. | ||
| 99 | (desktop-file-version): New variable. Version number of desktop | ||
| 100 | file format. | ||
| 101 | (desktop-create-buffer-form): Variable deleted. | ||
| 102 | (desktop-save): New customizable variable. | ||
| 103 | (desktop-kill): Changed to use `desktop-save'. | ||
| 104 | (desktop-file-name-format): New option: format in | ||
| 105 | which desktop file names should be saved. | ||
| 106 | (desktop-file-name): New function to convert a filename to the | ||
| 107 | format specified in `desktop-file-name-format'. | ||
| 108 | (desktop-create-buffer): Parameters renamed to descriptive | ||
| 109 | systematic names. These parameters are visible to handlers. | ||
| 110 | Renames: | ||
| 111 | ver -> desktop-file-version | ||
| 112 | mim -> desktop-buffer-minor-modes | ||
| 113 | pt -> desktop-buffer-point | ||
| 114 | mk -> desktop-buffer-mark | ||
| 115 | ro -> desktop-buffer-read-only | ||
| 116 | locals -> desktop-buffer-locals | ||
| 117 | (desktop-buffer-major-mode, desktop-buffer-file-name) | ||
| 118 | (desktop-buffer-name): Unused customizable variables deleted. | ||
| 119 | (desktop-buffer-misc): Unused variable deleted. | ||
| 120 | (desktop-save, desktop-buffer-dired-misc-data): | ||
| 121 | Use `desktop-file-name'. | ||
| 122 | (desktop-path): New customizable variable. List of directories in | ||
| 123 | which to lookup the desktop file. Replaces hardcoded list. | ||
| 124 | (desktop-globals-to-clear): New variable replaces hardcoded list. | ||
| 125 | (desktop-clear-preserve-buffers-regexp): New customizable variable. | ||
| 126 | (desktop-after-read-hook): New hook run after a desktop is read. | ||
| 127 | (desktop-no-desktop-file-hook): New hook when no desktop file found. | ||
| 128 | (desktop-change-dir): New function. | ||
| 129 | (desktop-save-in-load-dir): New function. Save desktop in | ||
| 130 | directory from witch it was loaded. | ||
| 131 | (desktop-revert): New function. Revert to the last loaded desktop. | ||
| 132 | |||
| 73 | 2003-04-06 Masatake YAMATO <jet@gyve.org> | 133 | 2003-04-06 Masatake YAMATO <jet@gyve.org> |
| 74 | 134 | ||
| 75 | * progmodes/etags.el (tag-find-file-of-tag): Renamed from | 135 | * progmodes/etags.el (tag-find-file-of-tag): Renamed from |
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 987ea5e44ea..f7757d1eee7 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2003-04-08 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * files.texi (Kinds of Files): Correct return value of file-symlink-p. | ||
| 4 | |||
| 1 | 2003-02-13 Kim F. Storm <storm@cua.dk> | 5 | 2003-02-13 Kim F. Storm <storm@cua.dk> |
| 2 | 6 | ||
| 3 | * objects.texi (Character Type): New \s escape for space. | 7 | * objects.texi (Character Type): New \s escape for space. |
diff --git a/src/ChangeLog b/src/ChangeLog index 9d6afda24d1..04ec185c444 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2003-04-08 Richard M. Stallman <rms@gnu.org> | 1 | 2003-04-08 Richard M. Stallman <rms@gnu.org> |
| 2 | 2 | ||
| 3 | * fileio.c (Ffile_symlink_p): Doc fix. | ||
| 4 | |||
| 5 | * editfns.c (Fformat): Translate positions of text properties | ||
| 6 | in the format string to apply them to the result. | ||
| 7 | |||
| 3 | * fileio.c (Finsert_file_contents): Doc fix. | 8 | * fileio.c (Finsert_file_contents): Doc fix. |
| 4 | (syms_of_fileio) <after-insert-file-functions>: Doc fix. | 9 | (syms_of_fileio) <after-insert-file-functions>: Doc fix. |
| 5 | 10 | ||
| @@ -8,6 +13,7 @@ | |||
| 8 | * lread.c (openp): Get the Qfile_exists_p handler for STRING, not FN. | 13 | * lread.c (openp): Get the Qfile_exists_p handler for STRING, not FN. |
| 9 | 14 | ||
| 10 | 2003-04-08 Steven Tamm <steventamm@mac.com> | 15 | 2003-04-08 Steven Tamm <steventamm@mac.com> |
| 16 | |||
| 11 | * mac.c (init_mac_osx_environment): Switch libexec and bin so | 17 | * mac.c (init_mac_osx_environment): Switch libexec and bin so |
| 12 | that self-contained application finds libexec files. | 18 | that self-contained application finds libexec files. |
| 13 | 19 | ||