diff options
| author | Richard M. Stallman | 2002-12-23 18:42:49 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-12-23 18:42:49 +0000 |
| commit | 2155ecf3833d88a660d9cd50d1824be0a31e322c (patch) | |
| tree | f753b3a1398c5f2f1881beee8c5c1b29ba9e22a5 | |
| parent | 3656dac0223c1151ca4ed96155b9372abd1e8575 (diff) | |
| download | emacs-2155ecf3833d88a660d9cd50d1824be0a31e322c.tar.gz emacs-2155ecf3833d88a660d9cd50d1824be0a31e322c.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 9 | ||||
| -rw-r--r-- | etc/TUTORIAL.translators | 4 | ||||
| -rw-r--r-- | lisp/ChangeLog | 51 | ||||
| -rw-r--r-- | src/ChangeLog | 13 |
4 files changed, 75 insertions, 2 deletions
| @@ -1124,6 +1124,15 @@ with Custom. | |||
| 1124 | ** New function `optimize-char-coding-system-table' can be called | 1124 | ** New function `optimize-char-coding-system-table' can be called |
| 1125 | after making changes to `char-coding-system-table'. | 1125 | after making changes to `char-coding-system-table'. |
| 1126 | 1126 | ||
| 1127 | ** `save-selected-window' now saves and restores the selected window | ||
| 1128 | of every frame. This way, it restores everything that can be changed | ||
| 1129 | by calling `select-window'. | ||
| 1130 | |||
| 1131 | ** `easy-menu-define' now allows you to use nil for the symbol name | ||
| 1132 | if you don't need to give the menu a name. If you install the menu | ||
| 1133 | into other keymaps right away (MAPS is non-nil), it usually doesn't | ||
| 1134 | need to have a name. | ||
| 1135 | |||
| 1127 | ** Byte compiler changes: | 1136 | ** Byte compiler changes: |
| 1128 | 1137 | ||
| 1129 | *** `(featurep 'xemacs)' is treated by the compiler as nil. This | 1138 | *** `(featurep 'xemacs)' is treated by the compiler as nil. This |
diff --git a/etc/TUTORIAL.translators b/etc/TUTORIAL.translators index 9c0e8114fe2..7bf280ac032 100644 --- a/etc/TUTORIAL.translators +++ b/etc/TUTORIAL.translators | |||
| @@ -1,10 +1,10 @@ | |||
| 1 | This file contains the list of translators of the tutorial. | 1 | This file contains the list of translators of the tutorial. |
| 2 | 2 | ||
| 3 | TUTORIAL.bg: Ognyan Kulev <ogi@fmi.uni-sofia.bg> | ||
| 3 | TUTORIAL.cs: Milan Zamazal <pdm@zamazal.org> | 4 | TUTORIAL.cs: Milan Zamazal <pdm@zamazal.org> |
| 4 | Pavel Janík <Pavel@Janik.cz> | 5 | Pavel Janík <Pavel@Janik.cz> |
| 5 | TUTORIAL.de: Werner Lemberg <wl@gnu.org> | 6 | TUTORIAL.de: Werner Lemberg <wl@gnu.org> |
| 6 | TUTORIAL.es: Carlos Alberto López Troncoso | 7 | TUTORIAL.es: Rafael Sepúlveda <drs@gnulinux.org.mx> |
| 7 | Igor Tamara Patino <igor@tamarapatino.com> | ||
| 8 | TUTORIAL.fr: Éric Jacoboni <jaco@teaser.fr> | 8 | TUTORIAL.fr: Éric Jacoboni <jaco@teaser.fr> |
| 9 | TUTORIAL.ja: Kenichi Handa <handa@m17n.org> | 9 | TUTORIAL.ja: Kenichi Handa <handa@m17n.org> |
| 10 | TUTORIAL.ko: Koaunghi Un <koaunghi@ling.cnu.ac.kr> | 10 | TUTORIAL.ko: Koaunghi Un <koaunghi@ling.cnu.ac.kr> |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fad8b49ae50..1bc6da4cdfe 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -11,6 +11,57 @@ | |||
| 11 | * cus-start.el (scroll-up-aggressively, scroll-down-aggressively): | 11 | * cus-start.el (scroll-up-aggressively, scroll-down-aggressively): |
| 12 | Update custom types. | 12 | Update custom types. |
| 13 | 13 | ||
| 14 | 2002-12-23 Alex Schroeder <alex@emacswiki.org> | ||
| 15 | |||
| 16 | Merging Dave Love <fx@gnu.org>'s custom_themes branch containing | ||
| 17 | Alex Schroeder's adaptation of Jan Vroonhof | ||
| 18 | <vroonhof@math.ethz.ch>'s code. Doc strings corrected by RMS. | ||
| 19 | |||
| 20 | * cus-edit.el (customize-save-variable): Take themes into account. | ||
| 21 | (custom-variable-save): Take themes into account. | ||
| 22 | (custom-variable-reset-saved): Add comment-widget. | ||
| 23 | (custom-variable-reset-standard): Add comment-widget. | ||
| 24 | (custom-variable-reset-standard): Take themes into account. | ||
| 25 | (custom-face-save): Take themes into account. | ||
| 26 | (custom-face-reset-standard): Take themes into account. | ||
| 27 | (custom-save-variables): Take themes into account. | ||
| 28 | (custom-save-faces): Take themes into account. | ||
| 29 | (custom-save-faces): Take themes into account. | ||
| 30 | (custom-save-resets): New function. | ||
| 31 | (custom-save-loaded-themes): New function. | ||
| 32 | (customize-save-customized): Take themes into account. | ||
| 33 | |||
| 34 | * cus-face.el (custom-set-faces): Call custom-theme-set-faces. | ||
| 35 | (custom-theme-set-faces): New function. | ||
| 36 | (custom-theme-face-value): New function. | ||
| 37 | (custom-theme-reset-internal-face): New function. | ||
| 38 | (custom-theme-reset-faces): New function. | ||
| 39 | (custom-reset-faces): New function. | ||
| 40 | |||
| 41 | * custom.el (custom-known-themes): New variable. | ||
| 42 | (custom-declare-theme): New function. | ||
| 43 | (deftheme): New macro. | ||
| 44 | (custom-make-theme-feature): New function. | ||
| 45 | (custom-theme-p): New function. | ||
| 46 | (custom-check-theme): New function. | ||
| 47 | (custom-push-theme): New function. | ||
| 48 | (custom-theme-set-variables): Take themes into account. | ||
| 49 | (custom-loaded-themes): New variable. | ||
| 50 | (custom-theme-loaded-p): New function. | ||
| 51 | (provide-theme): New function. | ||
| 52 | (require-theme): New function. | ||
| 53 | (custom-remove-theme): New function. | ||
| 54 | (custom-do-theme-reset): New function. | ||
| 55 | (custom-theme-load-themes): New function. | ||
| 56 | (custom-load-themes): New function. | ||
| 57 | (custom-theme-value): New function. | ||
| 58 | (custom-theme-variable-value): New function. | ||
| 59 | (custom-theme-reset-internal): New function. | ||
| 60 | (custom-theme-reset-variables): New function. | ||
| 61 | (custom-reset-variables): New function. | ||
| 62 | |||
| 63 | * cus-theme.el: New file. | ||
| 64 | |||
| 14 | 2002-12-23 Matthew Swift <swift@alum.mit.edu> | 65 | 2002-12-23 Matthew Swift <swift@alum.mit.edu> |
| 15 | 66 | ||
| 16 | * emacs-lisp/rx.el (rx-and): Generate a shy group. | 67 | * emacs-lisp/rx.el (rx-and): Generate a shy group. |
diff --git a/src/ChangeLog b/src/ChangeLog index 2cd921bd399..f37b3f580d5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,16 @@ | |||
| 1 | 2002-12-23 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * buffer.c (syms_of_buffer) <scroll-up-aggressively> | ||
| 4 | <scroll-down-aggressively>: Doc fix. | ||
| 5 | |||
| 6 | * xmenu.c (parse_single_submenu): Use individual keymap's prompt | ||
| 7 | string as pane name, if there is one. | ||
| 8 | (set_frame_menubar): Save menu_items_n_panes from each call to | ||
| 9 | parse_single_submenu and use it when calling digest_single_submenu. | ||
| 10 | |||
| 11 | * window.c (window_scroll_pixel_based): Fix check for reaching BEGV. | ||
| 12 | Don't try to make last line fully visible if it is past end of window. | ||
| 13 | |||
| 1 | 2002-12-22 Steven Tamm <steventamm@mac.com> | 14 | 2002-12-22 Steven Tamm <steventamm@mac.com> |
| 2 | 15 | ||
| 3 | * macmenu.c (MIN_POPUP_SUBMENU_ID): Added | 16 | * macmenu.c (MIN_POPUP_SUBMENU_ID): Added |