]> code.delx.au - gnu-emacs/blobdiff - lisp/ChangeLog
Call create-defualt-fontset, not
[gnu-emacs] / lisp / ChangeLog
index bd87e33cff5000328ea8125b72ddcc2bd1908e41..051e0703bd38a3c43fcd71d1290966a4b1b8cb12 100644 (file)
@@ -1,3 +1,181 @@
+2009-03-19  Kenichi Handa  <handa@m17n.org>
+
+       * term/ns-win.el: Call create-defualt-fontset, not
+       setup-default-fontset.  Call create-fontset-from-fontset-spec
+       within condition-case.
+
+       * term/w32-win.el (w32-initialize-window-system): Call
+       create-defualt-fontset, not setup-default-fontset.  Call
+       create-fontset-from-fontset-spec within condition-case.
+
+       * term/x-win.el (x-initialize-window-system): Call
+       create-defualt-fontset, not setup-default-fontset.  Call
+       create-fontset-from-fontset-spec within condition-case.
+
+       * international/fontset.el (create-default-fontset): New function.
+       (create-fontset-from-x-resource): Use display-warning instead of
+       message.
+
+2009-03-18  Richard M Stallman  <rms@gnu.org>
+
+       * mail/rmail.el (rmail-retry-ignored-headers): Add usual mime headers.
+       (rmail-retry-failure): Undo previous change.
+
+2009-03-18  Kenichi Handa  <handa@m17n.org>
+
+       * international/mule.el (after-insert-file-set-coding):
+       Set buffer-file-coding-system directly without calling
+       set-buffer-file-coding-system.  (Fixes bug described in
+       follow-up to bug#2317).
+
+2009-03-17  Juanma Barranquero  <lekktu@gmail.com>
+
+       * emacs-lisp/benchmark.el (benchmark): Reflow docstring.
+
+2009-03-17  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
+
+       * international/characters.el (cjk-char-width-table):
+       Add cp932-2-byte.
+
+2009-03-17  Chong Yidong  <cyd@stupidchicken.com>
+
+       * minibuffer.el (minibuffer-complete-and-exit): Doc fix.
+
+2009-03-16  David Reitter  <david.reitter@gmail.com>
+
+       * faces.el (set-face-attributes-from-resources)
+       (face-set-after-frame-default): Do not import X resources on NS
+       because NS does not have system-wide X resources.
+
+2009-03-16  Richard M Stallman  <rms@gnu.org>
+
+       * mail/rmail.el (rmail-retry-failure): Discard rmail-ignored-headers.
+       (rmail-expunge): Show the message only once, and only if needed.
+       If the current message was current before, just re-swap.
+
+2009-03-16  Kenichi Handa  <handa@m17n.org>
+
+       * international/ccl.el (ccl-compile-if): Signal an error for
+       invalid operator.
+
+2009-03-16  Chong Yidong  <cyd@stupidchicken.com>
+
+       * minibuffer.el (read-file-name): Doc fix.
+
+       * tooltip.el (tooltip-show-help-non-mode): Don't set
+       tooltip-previous-message if called with the same tooltip that is
+       showing (Bug#2680).
+
+       * emacs-lisp/crm.el (crm--choose-completion-string): New function.
+       (completing-read-multiple): Set and restore
+       choose-completion-string-functions (Bug#1080).
+
+2009-03-15  Glenn Morris  <rgm@gnu.org>
+
+       * calendar/cal-tex.el (cal-tex-preamble-extra): Add an example string
+       value to help people with the formatting.
+
+       * mail/sendmail.el (mail-yank-prefix): Doc fix.
+       (mail-mode-map): Only enable the "Cite Original" menu-item when
+       appropriate.  Standardize the text used for other headers re hyphens.
+
+       * mail/rmail.el (rmail-font-lock-keywords): Treat "Mail-Reply-To"
+       like "Reply-To".
+
+2009-03-15  Chong Yidong  <cyd@stupidchicken.com>
+
+       * minibuffer.el (completion-styles): Add emacs22 completion style
+       as fallback.
+
+2009-03-15  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * vc.el (vc-checkin): Add an extra argument for the VC backend,
+       pass it down to vc-start-logentry.
+       (vc-next-action, vc-transfer-file): Pass the VC backend to
+       vc-checkin.
+       (vc-next-action): Do not assume that all backends in
+       vc-handled-backends are upper case.
+
+2009-03-15  Chong Yidong  <cyd@stupidchicken.com>
+
+       * files.el (get-free-disk-space): Ensure that default-directory is
+       usable before calling call-process.  Suggested by Kevin
+       Ryde (Bug#2631).
+
+2009-03-14  David Reitter  <david.reitter@gmail.com>
+
+       * term/ns-win.el (ns-expand-space): Remove.
+       (ns-show-prefs event): Run `customize'.
+       (ns-power-off): Run `save-buffers-kill-emacs', but ask user
+       whether to save files (as is standard).
+       (clipboard-yank, clipboard-kill-ring-save, clipboard-kill-region)
+       (menu-bar-enable-clipboard): Do not undefine these.
+       (ns-save-preferences, ns-save-options, ns-show-preferences-help):
+       Remove.
+
+2009-03-14  Glenn Morris  <rgm@gnu.org>
+
+       * mail/mailalias.el: Remove leading `*' from defcustom docs.
+
+       * mail/sendmail.el (mail-interactive): Doc fix.
+       (mail-yank-ignored-headers): Add X-RMAIL- headers, bump :version.
+       (mail-setup): Use the function mail-signature.
+       (mail-mode-hook): Doc fix.
+       (mail-to, mail-subject, mail-cc, mail-bcc, mail-reply-to)
+       (mail-mail-reply-to, mail-mail-followup-to): Doc fixes.
+       (mail-signature): Check the signature file is readable.
+       With the argument ATPOINT, really insert at point.
+       Handle the case when the variable mail-signature is an expression.
+
+2009-03-14  Chong Yidong  <cyd@stupidchicken.com>
+
+       * simple.el (undo-outer-limit-truncate): Mention that
+       warning-suppress-types is defined in the warnings
+       library (Bug#2668).
+
+2009-03-14  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * vc.el (vc-default-receive-file): The 'register method now
+       expects a list, pass a list.
+
+2009-03-14  Chong Yidong  <cyd@stupidchicken.com>
+
+       * doc-view.el (doc-view-sentinel): Strip trailing newline from
+       event message.
+
+2009-03-14  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * tar-mode.el (tar-extract): Setup the buffer's name, undo-list, and
+       modified status before running the major-mode.
+
+       * simple.el (undo): Don't loop when encountering empty undo records.
+
+2009-03-13  Tassilo Horn  <tassilo@member.fsf.org>
+
+       * doc-view.el (doc-view-mode-map): Bind RET to image-next-line.
+
+2009-03-13  Alexandre Julliard  <julliard@winehq.org>
+
+       * vc-git.el (vc-git-previous-revision, vc-git-next-revision):
+       Fall back to original commit if vc-git-symbolic-commit fails to
+       find a symbolic name.
+       (vc-git-symbolic-commit): Don't limit search to tags.
+       Treat "undefined" as an error.  (Bug #2110)
+
+2009-03-13  D. Goel  <deego3@gmail.com>
+
+       * ibuf-ext.el:
+       * midnight.el (midnight-next):
+       * progmodes/ebrowse.el:
+       * progmodes/flymake.el (flymake-float-time):
+       When calling (multiple-value-bind/setq .. ls) replace ls
+       by (values-list ls) throughout.
+
+2009-03-13  Agustín Martín  <agustin.martin@hispalinux.es>
+
+       * textmodes/ispell.el (ispell-get-word): Initialize spellchecker
+       params.  (Bug #2654)
+
 2009-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * files.el (auto-mode-alist): Add rules for OpenOffice extension