diff options
| author | Stefan Monnier | 2001-12-16 05:16:40 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-12-16 05:16:40 +0000 |
| commit | 39af220ea37c99f09c51eb7fba99a3d6f0ac64ec (patch) | |
| tree | 122c892dffda63e88c127dd4fa24690771453899 | |
| parent | 4d0fa4f3ecb46928347b46afd1ca00218d7ef98a (diff) | |
| download | emacs-39af220ea37c99f09c51eb7fba99a3d6f0ac64ec.tar.gz emacs-39af220ea37c99f09c51eb7fba99a3d6f0ac64ec.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 39 |
1 files changed, 25 insertions, 14 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f4657f27696..bb26b76edce 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | * language/ind-util.el (range): Function deleted. | 20 | * language/ind-util.el (range): Function deleted. |
| 21 | (indian-regexp-of-hashtbl-keys): Renamed from `regexp-of-hashtbl-keys'. | 21 | (indian-regexp-of-hashtbl-keys): Renamed from `regexp-of-hashtbl-keys'. |
| 22 | All calls changed. | 22 | All calls changed. |
| 23 | 23 | ||
| 24 | * language/devan-util.el (devanagari-range): Renamed from `range'. | 24 | * language/devan-util.el (devanagari-range): Renamed from `range'. |
| 25 | All calls changed. | 25 | All calls changed. |
| 26 | (devanagari-regexp-of-hashtbl-keys): | 26 | (devanagari-regexp-of-hashtbl-keys): |
| @@ -33,14 +33,14 @@ | |||
| 33 | (indian-char-glyph): Moved from indian.el | 33 | (indian-char-glyph): Moved from indian.el |
| 34 | (indian--puthash-char, mapthread): Don't quote lambda. | 34 | (indian--puthash-char, mapthread): Don't quote lambda. |
| 35 | (indian--map): New function. | 35 | (indian--map): New function. |
| 36 | (indian--puthash-v, indian--puthash-c, indian--puthash-m) | 36 | (indian--puthash-v, indian--puthash-c, indian--puthash-m) |
| 37 | (indian--puthash-cv): Use it. | 37 | (indian--puthash-cv): Use it. |
| 38 | 38 | ||
| 39 | * language/indian.el (indian-glyph-char, indian-glyph-max-char) | 39 | * language/indian.el (indian-glyph-char, indian-glyph-max-char) |
| 40 | (indian-char-glyph): Moved to ind-util.el | 40 | (indian-char-glyph): Moved to ind-util.el |
| 41 | 41 | ||
| 42 | * language/devan-util.el (devanagari-post-read-conversion): New | 42 | * language/devan-util.el (devanagari-post-read-conversion): |
| 43 | function. | 43 | New function. |
| 44 | 44 | ||
| 45 | * language/georgian.el: New file. | 45 | * language/georgian.el: New file. |
| 46 | 46 | ||
| @@ -50,17 +50,16 @@ | |||
| 50 | Add utf-8 case. | 50 | Add utf-8 case. |
| 51 | (set-language-environment): Process required-features earlier. | 51 | (set-language-environment): Process required-features earlier. |
| 52 | 52 | ||
| 53 | * international/quail.el (quail-keyboard-layout-alist): Add | 53 | * international/quail.el (quail-keyboard-layout-alist): |
| 54 | pc105-uk. | 54 | Add pc105-uk. |
| 55 | (quail-keyboard-layout-type): Fix :type. | 55 | (quail-keyboard-layout-type): Fix :type. |
| 56 | (quail-choose-completion-string): Simplify. | 56 | (quail-choose-completion-string): Simplify. |
| 57 | (quail-update-leim-list-file): Don't get fooled by commented-out | 57 | (quail-update-leim-list-file): Don't get fooled by commented-out code. |
| 58 | code. | ||
| 59 | (quail-input-string-to-events): Run events through | 58 | (quail-input-string-to-events): Run events through |
| 60 | translation-table-for-input. | 59 | translation-table-for-input. |
| 61 | 60 | ||
| 62 | * international/mule-conf.el (translation-table-for-input): New | 61 | * international/mule-conf.el (translation-table-for-input): |
| 63 | variable. | 62 | New variable. |
| 64 | (latin-iso8859-14): Amend description. | 63 | (latin-iso8859-14): Amend description. |
| 65 | (file-coding-system-alist): Add entry for utf-8. | 64 | (file-coding-system-alist): Add entry for utf-8. |
| 66 | 65 | ||
| @@ -70,13 +69,25 @@ | |||
| 70 | 69 | ||
| 71 | * language/hebrew.el ("Windows-1255"): New language. | 70 | * language/hebrew.el ("Windows-1255"): New language. |
| 72 | 71 | ||
| 73 | * language/european.el ("Welsh", "Latin-7", "Lithuanian") | 72 | * language/european.el ("Welsh", "Latin-7", "Lithuanian") |
| 74 | ("Latvian"): New languages. | 73 | ("Latvian"): New languages. |
| 75 | 74 | ||
| 75 | 2001-12-14 Stefan Monnier <monnier@cs.yale.edu> | ||
| 76 | |||
| 77 | * xml.el: Use setq rather than (set 'foo bar). | ||
| 78 | Use push+nreverse rather than append. | ||
| 79 | (xml-node-name, xml-node-attributes, xml-node-children): | ||
| 80 | Use defsubst rather than macros. | ||
| 81 | (xml-parse-region): Handle a nil return value from xml-parse-tag. | ||
| 82 | (xml-parse-tag): Don't skip white space. Return nil for a comment. | ||
| 83 | Concat the two strings surrounding a comment into a single string. | ||
| 84 | |||
| 85 | * newcomment.el (comment-indent): Jump to the middle of empty comments. | ||
| 86 | |||
| 76 | 2001-12-14 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 87 | 2001-12-14 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 77 | 88 | ||
| 78 | * select.el (xselect-convert-to-class, xselect-convert-to-name): | 89 | * select.el (xselect-convert-to-class, xselect-convert-to-name): |
| 79 | Documented. | 90 | Document. |
| 80 | 91 | ||
| 81 | 2001-12-14 Andre Spiegel <spiegel@gnu.org> | 92 | 2001-12-14 Andre Spiegel <spiegel@gnu.org> |
| 82 | 93 | ||
| @@ -87,7 +98,7 @@ | |||
| 87 | 98 | ||
| 88 | 2001-12-13 David Ponce <david@dponce.com> | 99 | 2001-12-13 David Ponce <david@dponce.com> |
| 89 | 100 | ||
| 90 | * ruler-mode.el (ruler-mode-extra-left-cols): Removed. | 101 | * ruler-mode.el (ruler-mode-extra-left-cols): Remove. |
| 91 | (ruler-mode-left-fringe-cols): New macro. | 102 | (ruler-mode-left-fringe-cols): New macro. |
| 92 | (ruler-mode-right-fringe-cols): New macro. | 103 | (ruler-mode-right-fringe-cols): New macro. |
| 93 | (ruler-mode-left-scroll-bar-cols): New macro. | 104 | (ruler-mode-left-scroll-bar-cols): New macro. |