[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/ChangeLog [emacs-unicode-2]
From: |
Miles Bader |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/ChangeLog [emacs-unicode-2] |
Date: |
Tue, 21 Sep 2004 05:42:11 -0400 |
Index: emacs/lisp/ChangeLog
diff -c emacs/lisp/ChangeLog:1.5326.2.17 emacs/lisp/ChangeLog:1.5326.2.18
*** emacs/lisp/ChangeLog:1.5326.2.17 Fri Sep 17 14:31:01 2004
--- emacs/lisp/ChangeLog Tue Sep 21 09:34:08 2004
***************
*** 1,3 ****
--- 1,124 ----
+ 2004-09-21 Kenichi Handa <address@hidden>
+
+ * descr-text.el (describe-char): Checking of quail activation
+ fixed.
+
+ 2004-09-20 Luc Teirlinck <address@hidden>
+
+ * subr.el (run-mode-hooks): Run `after-change-major-mode-hook'
+ after the mode hooks instead of before. Doc fix.
+
+ 2004-09-20 Jason Rumney <address@hidden>
+
+ * startup.el (command-line) [windows-nt]: Try .emacs first, then
+ _emacs, but revert to .emacs if neither exists in home directory.
+
+ 2004-09-20 John Paul Wallington <address@hidden>
+
+ * bindings.el (completion-ignored-extensions): Add .dfsl.
+
+ 2004-09-20 Richard M. Stallman <address@hidden>
+
+ * bindings.el (scroll-left): Make it disabled.
+
+ * files.el (enable-local-eval): Doc fix.
+
+ * indent.el (move-to-left-margin): Special case for minibuffer.
+
+ * term.el (term-emulate-terminal): Turn off undo for output.
+ Use with-current-buffer and save-selected-window.
+
+ * eshell/esh-ext.el (eshell-explicit-command-char): Doc fix.
+
+ * progmodes/make-mode.el (makefile-fill-paragraph):
+ Don't insist on spaces when looking for comments. # is enough.
+
+ * files.el (hack-local-variables): Copy the variables list
+ to another buffer, strip prefixes and suffixes there, then read.
+ (enable-local-eval): Doc fix.
+ (ignored-local-variables): Initialize to nil.
+ (risky-local-variable-p): Don't check ignored-local-variables here.
+ (hack-one-local-variable): Ignore var if in ignored-local-variables.
+
+ 2004-09-20 Dan Nicolaescu <address@hidden>
+
+ * progmodes/sh-script.el (sh-mode-default-syntax-table): Set syntax
+ of = to "." (punctuation).
+
+ 2004-09-19 Stefan <address@hidden>
+
+ * subr.el (event-basic-type): Fix mask (extend to 22bits).
+
+ 2004-09-18 Luc Teirlinck <address@hidden>
+
+ * textmodes/enriched.el (enriched-rerun-flag): New variable.
+ (enriched-before-change-major-mode): New function.
+ Add it to `change-major-mode-hook'.
+ (enriched-after-change-major-mode): New function.
+ Add it to `after-change-major-mode-hook'.
+ (enriched-mode): Make it work correctly if called from
+ `after-change-major-mode-hook'.
+ No longer set `indent-line-function'.
+
+ * simple.el (fundamental-mode): Run `after-change-major-mode-hook'.
+
+ * subr.el (after-change-major-mode-hook): New variable.
+ (run-mode-hooks): Implement it.
+
+ 2004-09-18 Stefan Monnier <address@hidden>
+
+ * battery.el (battery-linux-proc-apm): Use string-to-number.
+ (battery-linux-proc-acpi): Ignore all hidden files in the battery dir.
+ Use dolist (and less indentation). Use erase-buffer.
+ Pre-initialize `design-capacity', `warn', and `low'.
+ (battery-format): Use replace-regexp-in-string.
+
+ 2004-09-18 Ralph Schleicher <address@hidden>
+
+ * battery.el: Delete superfluous empty lines.
+ (battery-linux-proc-acpi): Attempt to gather information from all
+ battery subdirectories regardless of their file name.
+ (battery-linux-proc-apm): Replace all occurrences of
+ battery-hex-to-int-2 with string-to-int (base 16).
+ (battery-hex-to-int-2, battery-hex-to-int): Delete functions.
+ (battery-hex-map): Delete variable.
+
+ 2004-09-18 John Paul Wallington <address@hidden>
+
+ * calc/calc-units.el (calc-quick-units): Fix overzealous
+ s/or/unless/.
+
+ 2004-09-17 Romain Francoise <address@hidden>
+
+ * ibuf-ext.el (define-ibuffer-filter filename):
+ Expand dired-directory since buffer-file-name is absolute.
+
+ 2004-09-17 Dan Nicolaescu <address@hidden>
+
+ * ediff-init.el (ediff-current-diff-face-A)
+ (ediff-current-diff-face-B, ediff-current-diff-face-C)
+ (ediff-current-diff-face-Ancestor)
+ (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
+ (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
+ (ediff-even-diff-face-A, ediff-even-diff-face-B)
+ (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
+ (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
+ (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
+ Use min-colors.
+
+ * term.el (term-down): Perform vertical motion if DOWN is negative.
+ (term-exec-1): Set both TERMCAP and TERMINFO unconditionally.
+ (term-termcap-format): Synchronyze with the eterm terminfo entry
+ in etc/e/eterm.ti.
+ (term-handle-colors-array): If the current foreground or
+ background are zero (i.e. unspecified), use the foreground and
+ background of the default face for reverse video.
+ (term-ansi-at-eval-string, term-ansi-default-fg)
+ (term-ansi-default-bg, term-ansi-current-temp): Delete unused variable.
+ (term-mem): Delete ununsed function.
+ (term-protocol-version): Increment.
+ (term-current-face): Set to default.
+
2004-09-15 Thien-Thi Nguyen <address@hidden>
* vc.el (annotate-time): Document point handling.
***************
*** 153,158 ****
--- 274,284 ----
* desktop.el (desktop-clear-preserve-buffers):
Remove make-obsolete-variable.
+ 2004-09-08 Richard M. Stallman <address@hidden>
+
+ * buff-menu.el (list-buffers-noselect): Call format-mode-line
+ with the buffer as argument.
+
2004-09-08 Stefan Monnier <address@hidden>
* vc-arch.el (vc-arch-state): Fix parsing for `names' method.
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog [emacs-unicode-2], Miles Bader, 2004/09/04
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog [emacs-unicode-2], Miles Bader, 2004/09/09
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog [emacs-unicode-2], Miles Bader, 2004/09/15
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog [emacs-unicode-2], Miles Bader, 2004/09/17
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog [emacs-unicode-2],
Miles Bader <=
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog [emacs-unicode-2], Miles Bader, 2004/09/25
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog [emacs-unicode-2], Miles Bader, 2004/09/29
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog [emacs-unicode-2], Miles Bader, 2004/09/29