aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2002-04-01 23:33:40 +0000
committerStefan Monnier2002-04-01 23:33:40 +0000
commitc5e5e1f85594ae082e08aaf11a63166c3e20a332 (patch)
tree9143a4498d5bdb9788c49e3d45fcb9c707cf8051
parent2394187c2c96f22b59e785311187165f97b22755 (diff)
downloademacs-c5e5e1f85594ae082e08aaf11a63166c3e20a332.tar.gz
emacs-c5e5e1f85594ae082e08aaf11a63166c3e20a332.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog26
-rw-r--r--src/ChangeLog16
2 files changed, 41 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8e578046ef1..ff0b98c127f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,27 @@
12002-04-01 Stefan Monnier <monnier@cs.yale.edu>
2
3 * textmodes/sgml-mode.el (sgml-at-indentation-p, sgml-tag)
4 (sgml-parse-tag-name, sgml-looking-back-at, sgml-parse-tag-backward)
5 (sgml-inside-tag-p, sgml-get-context, sgml-show-context)
6 (sgml-insert-end-tag): New funs taken from xml-lite.el.
7 (sgml-calculate-indent): Use them.
8 (sgml-slash-matching): Rename from sgml-slash.
9 (sgml-slash): Copied from xml-lite and changed to use
10 sgml-slash-matching and sgml-quick-keys.
11
12 * international/mule-cmds.el (standard-keyboard-coding-systems):
13 Add koi8-u and koi8-r.
14
15 * eshell/.cvsignore: New file.
16
17 * eshell/esh-groups.el: Remove.
18
19 * progmodes/tcl.el: Change maintainer.
20 (tcl-electric-hash-style): Change default to nil.
21 (tcl-imenu-generic-expression): Use tcl-proc-regexp.
22 (tcl-do-auto-fill): Remove.
23 (tcl-auto-fill-mode): Rewrite using comment-auto-fill-only-comments.
24
12002-04-01 Ville Skytt,Ad(B <ville.skytta@xemacs.org> 252002-04-01 Ville Skytt,Ad(B <ville.skytta@xemacs.org>
2 26
3 * tcl.el (tcl-imenu-generic-expression): New value. 27 * tcl.el (tcl-imenu-generic-expression): New value.
@@ -7,7 +31,7 @@
7 tcl-imenu-create-index-function. 31 tcl-imenu-create-index-function.
8 (inferior-tcl-mode): Doc fix. 32 (inferior-tcl-mode): Doc fix.
9 Change not legally significant. 33 Change not legally significant.
10 34
112002-04-01 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 352002-04-01 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
12 36
13 * cus-start.el: Rename `x-autoselect-window' to `autoselect-window'. 37 * cus-start.el: Rename `x-autoselect-window' to `autoselect-window'.
diff --git a/src/ChangeLog b/src/ChangeLog
index d0ba5ae47c0..c8399ffc594 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,21 @@
12002-04-01 Stefan Monnier <monnier@cs.yale.edu> 12002-04-01 Stefan Monnier <monnier@cs.yale.edu>
2 2
3 * region-cache.c (new_region_cache): Use BEG.
4
5 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
6 Use BEG and BEG_BYTE.
7
8 * doc.c (get_doc_string): Return nil of the location is wrong.
9 (reread_doc_file): New fun.
10 (Fdocumentation, Fdocumentation_property):
11 Call it if get_doc_string fails.
12 (Fsnarf_documentation): Make it work for a dumped Emacs.
13
14 * charset.h (DEC_POS, BUF_DEC_POS): Use BEG_BYTE.
15 Bound the search with MAX_MULTIBYTE_LENGTH to avoid pathological case.
16
17 * charset.c (Fstring): Allow 0 arguments.
18
3 * xterm.c (XTread_socket): Fix int/Lisp_Object confusion. 19 * xterm.c (XTread_socket): Fix int/Lisp_Object confusion.
4 20
5 * process.c (DATAGRAM_CONN_P, list_processes_1) 21 * process.c (DATAGRAM_CONN_P, list_processes_1)