* lisp/emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
[bpt/emacs.git] / lisp / ChangeLog
index b8ba010..2bb0bad 100644 (file)
@@ -1,5 +1,164 @@
+2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
+       inherit from parent.
+
+2011-07-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * dired-aux.el (dired-diff): Doc fixup (bug#8816).
+       (dired-show-file-type): Doc fixup (bug#8818).
+
+       * dired.el (dired-mode): Fix up the doc string as suggested by
+       Drew Adams (bug#8817).
+
+       * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
+       cookie, since the manual says that it should be possible to add
+       this function to `find-file-hook' (bug#8709).
+
+2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
+
+       * progmodes/cfengine.el: Moved all cfengine3.el functionality
+       here.  Noted Ted Zlatanov as the maintainer.
+       (cfengine-common-settings, cfengine-common-syntax): New functions
+       to set up common things between `cfengine-mode' and
+       `cfengine3-mode'.
+       (cfengine3-mode): New mode.
+       (cfengine3-defuns cfengine3-defuns-regex
+       (cfengine3-class-selector-regex cfengine3-category-regex)
+       (cfengine3-vartypes cfengine3-font-lock-keywords)
+       (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
+       (cfengine3-indent-line): Added from cfengine3.el.
+
+2011-07-01  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
+
+       * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
+
+2011-07-01  Martin Rudalics  <rudalics@gmx.at>
+
+       * window.el (same-window-buffer-names, same-window-regexps)
+       (same-window-p, special-display-frame-alist)
+       (special-display-popup-frame, special-display-function)
+       (special-display-buffer-names, special-display-regexps)
+       (special-display-p, pop-up-frame-alist, pop-up-frame-function)
+       (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
+       (split-window-preferred-function, split-height-threshold)
+       (split-width-threshold, even-window-heights)
+       (display-buffer-mark-dedicated, window-splittable-p)
+       (split-window-sensibly, window-safely-shrinkable-p):
+       Un-obsolete.
+       (display-buffer): Don't spread args with function specifier
+       because special-display-popup-frame won't like it.
+
+2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
+
+       Time-stamp simplifications and fixes.
+       These improve accuracy slightly, and future-proof the code
+       against some potential changes to current-time format.
+
+       * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
+       by using time-since and float-time.
+
+       * vc/ediff-util.el (ediff-calc-command-time): Use time-since
+       and float-time.  Say "NNN.NNN seconds" rather than "NNN seconds
+       + NNN microseconds".
+
+       * type-break.el (type-break-time-sum): Rewrite using time-add.
+
+       * play/hanoi.el (hanoi-current-time-float): Remove.
+       All uses replaced by float-time.
+
+       * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
+       This yields a more-accurate answer.
+       (rng-time-to-float): Remove; no longer needed.
+
+       * emacs-lisp/timer.el (timer-relative-time): Use time-add.
+
+       * calendar/timeclock.el (timeclock-seconds-to-time):
+       Defalias to seconds-to-time, since they're the same thing.
+
+       * emacs-lisp/elp.el (elp-elapsed-time):
+       * emacs-lisp/benchmark.el (benchmark-elapse):
+       * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
+
+2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * window.el (bury-buffer): Don't iconify the only frame.
+       (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
+       to pop-to-buffer.  Use pop-to-buffer-same-frame if you don't like that.
+
+2011-07-01  Chong Yidong  <cyd@stupidchicken.com>
+
+       * eshell/em-smart.el (eshell-smart-display-navigate-list):
+       Add mouse-yank-primary.
+
+2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
+
+       * progmodes/cfengine3.el: New file to support CFEngine 3.x.
+
+2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/find-func.el (find-library--load-name): New fun.
+       (find-library-name): Use it to find relative load names when provided
+       absolute file name (bug#8803).
+
+2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * textmodes/flyspell.el (flyspell-word): Consider words that
+       differ only in case as potential doublons (bug#5687).
+
+       * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
+       Remove two rather uninteresting debugging-like messages to make
+       debbugs.el more silent.
+
+       * comint.el (comint-password-prompt-regexp): Accept "Response" as
+       a password-like phrase.
+
+2011-06-30  Mastake YAMATO  <yamato@redhat.com>
+
+       * progmodes/cc-guess.el: New file.
+
+       * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
+
+       * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
+       derived from `c-basic-common-init'.
+
+       * progmodes/cc-mode.el (top-level): Require cc-guess.
+       (c-basic-common-init): Use `cc-choose-style-for-mode'.
+
+2011-06-30  Lawrence Mitchell  <wence@gmx.li>
+
+       * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
+
+2011-06-30  Alan Mackenzie  <acm@muc.de>
+
+       * progmodes/cc-engine.el (c-guess-continued-construct):
+       Correct the handling of template-args-cont, particularly for when font
+       lock is disabled.  Name this case as "CASE G".
+
+2011-06-30  Ken Manheimer  <ken.manheimer@gmail.com>
+
+       * allout.el (allout-yank-processing): Fix injection of extra space
+       between bullet and non-whitespace character in first topic when
+       pasting, ensuring that the actual spacing in the pasted topic
+       following the bullet char is preserved.  This extra space was
+       causing pasted encrypted topics to get a decrypted status even
+       when the content was actually still encrypted.  Now the decryption
+       status from before the paste is preserved.
+
+       (allout-flag-region): Set all allout overlays so they evaporate
+       when reduced to zero length (evanescent), to prevent overlay
+       leakage.
+
 2011-06-30  Glenn Morris  <rgm@gnu.org>
 
+       * w32-fns.el (w32-charset-info-alist): Declare.
+
+       * find-dired.el (find-grep-options): Simplify.
+
+       * term/ns-win.el (ns-set-resource): Declare.
+
        * ses.el (row, col): Declare dynamic variables honestly.
 
        * textmodes/reftex-parse.el (index-tags): Declare.
 
        * files.el (hack-local-variables-confirm): Use it.
 
-       * custom.el (load-theme): New arg NO-CONFIRM.  Use
-       customize-push-and-save (Bug#8720).
+       * custom.el (load-theme): New arg NO-CONFIRM.
+       Use customize-push-and-save (Bug#8720).
        (custom-enabled-themes): Doc fix.
 
        * cus-theme.el (customize-create-theme)
 
 2011-06-28  Deniz Dogan  <deniz@dogan.se>
 
-       * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table): Unnest
-       `let'.
+       * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
+       Unnest `let'.
 
        * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
        selectors (Bug#5732).