aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2004-10-16 15:35:53 +0000
committerRichard M. Stallman2004-10-16 15:35:53 +0000
commitc2e2ede7e88395e3f85871bd58dc9dab1d83d242 (patch)
treeaf4cce051113f5428ec54346e47c869237ab8f41
parent931a33313e9d66037eb9ea50e854fe7028c0a8fe (diff)
downloademacs-c2e2ede7e88395e3f85871bd58dc9dab1d83d242.tar.gz
emacs-c2e2ede7e88395e3f85871bd58dc9dab1d83d242.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog57
-rw-r--r--lisp/url/ChangeLog22
-rw-r--r--src/ChangeLog4
3 files changed, 83 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f46bc155970..c0c5518f765 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,51 @@
12004-10-16 Richard M. Stallman <rms@gnu.org>
2
3 * pcvs-util.el (cvs-bury-buffer):
4 Don't call get-buffer-window for effect.
5
6 * outline.el (hide-other): Call outline-up-heading with INVISIBLE-OK=t.
7
8 * newcomment.el (comment-auto-fill-only-comments): Add autoload.
9
10 * msb.el (msb-unload-hook): Set the variable.
11
12 * mouse.el (mouse-yank-at-click, mouse-yank-secondary):
13 Use * to err if buffer is readonly.
14
15 * subr.el (looking-back): Return only t or nil.
16
17 * whitespace.el (whitespace-unload-hook): Set the variable.
18
19 * view.el (view-mode-enable): Set view-page-size and
20 view-half-page-size to nil.
21 (view-set-half-page-size-default): view-half-page-size = nil
22 means the default.
23 (View-scroll-page-forward): Use view-page-size-default.
24 (View-scroll-page-backward): Likewise.
25 (view-page-size, view-half-page-size): Doc fixes.
26
27 * emacs-lisp/elp.el (elp-unload-hook): Set the variable.
28
29 * emacs-lisp/cl.el (cl-unload-hook): Don't defvar it, just set it.
30
31 * emacs-lisp/bytecomp.el (byte-compile-eval): Don't process
32 "cl" like other files. Instead, call byte-compile-find-cl-functions.
33 (byte-compile-log-1): Bind inhibit-read-only.
34 (byte-compile-warning-prefix, byte-compile-log-file): Likewise.
35 (byte-compile-log-warning): Likewise.
36 (byte-compile-file-form-require): Detect "cl" from the arg value.
37
38 * progmodes/compile.el (compilation-start): Assume compilation-mode
39 will make the buffer read-only.
40 (compilation-mode): Take arg name-of-mode.
41 (compilation-setup): Make buffer read-only.
42 (compilation-handle-exit): Bind inhibit-read-only.
43
44 * textmodes/ispell.el (ispell-command-loop): Use with-no-warnings.
45 (ispell-message): Likewise.
46 (ispell-show-choices): Don't call get-buffer-window uselessly.
47 (ispell-init-process): Use set-process-query-on-exit-flag.
48
12004-10-16 Kim F. Storm <storm@cua.dk> 492004-10-16 Kim F. Storm <storm@cua.dk>
2 50
3 * fringe.el (fringe-bitmaps): Only initialize when defined. 51 * fringe.el (fringe-bitmaps): Only initialize when defined.
@@ -38,6 +86,15 @@
38 (event-modifiers): Use push. 86 (event-modifiers): Use push.
39 (mouse-movement-p, with-temp-buffer): Simplify. 87 (mouse-movement-p, with-temp-buffer): Simplify.
40 88
892004-10-12 Richard M. Stallman <rms@gnu.org>
90
91 * info-look.el (info-lookup-file): Add info-file property.
92 (info-lookup-symbol): Likewise.
93
94 * info.el (info-xref): Add underlining.
95 (info): Add info-file property.
96 (Info-find-emacs-command-nodes): Specify case-sensitive search.
97
412004-10-12 Michael Albinus <michael.albinus@gmx.de> 982004-10-12 Michael Albinus <michael.albinus@gmx.de>
42 99
43 Sync with Tramp 2.0.45. 100 Sync with Tramp 2.0.45.
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog
index 91a6c869a21..87f818cd70d 100644
--- a/lisp/url/ChangeLog
+++ b/lisp/url/ChangeLog
@@ -1,3 +1,25 @@
12004-10-16 Richard M. Stallman <rms@gnu.org>
2
3 * url.el (url-do-setup): Don't set url-passwd-entry-func.
4
5 * url-vars.el (url-passwd-entry-func): Var deleted.
6 (mm-mime-mule-charset-alist): Remove compatibility code for old Gnus.
7 (url-weekday-alist): Renamed from weekday-alist.
8 (url-monthabbrev-alist): Renamed from monthabbrev-alist.
9 (url-vars-unload-hook): Initialize hook var to hold the function.
10
11 * url-util.el (url-get-normalized-date): Use
12 url-weekday-alist and url-monthabbrev-alist.
13
14 * url-misc.el: Load cl at compile time.
15
16 * url-mailto.el: Don't load cl.
17 (url-mailto): Fix call to `push'.
18
19 * url-gw.el (url-open-telnet): Use read-passwd.
20
21 * url-auth.el (url-basic-auth, url-digest-auth): Use read-passwd.
22
12004-10-12 Simon Josefsson <jas@extundo.com> 232004-10-12 Simon Josefsson <jas@extundo.com>
2 24
3 * url-vars.el (url-gateway-method): Add new method `tls'. 25 * url-vars.el (url-gateway-method): Add new method `tls'.
diff --git a/src/ChangeLog b/src/ChangeLog
index 509add7e1d5..46649e5006f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12004-10-16 Richard M. Stallman <rms@gnu.org>
2
3 * window.c (Fspecial_display_p): Doc fix.
4
12004-10-15 Stefan <monnier@iro.umontreal.ca> 52004-10-15 Stefan <monnier@iro.umontreal.ca>
2 6
3 * doc.c (Fsubstitute_command_keys): Fix remap-handling. 7 * doc.c (Fsubstitute_command_keys): Fix remap-handling.