X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/45fdb48240996f7ad9c8c03f438ecf7f5b925d8e..eed991017a9d80651febdb5549bc75853945dfbc:/lisp/ChangeLog diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4c55452e5b..09bd7d19c2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,347 @@ +2013-08-25 Xue Fuqiao + + * progmodes/flymake.el (flymake-get-real-file-name-function): + Fix broken customization. (Bug#15184) + +2013-08-25 Alan Mackenzie + + Improve indentation of bracelists defined by macros (without "="). + + * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro + expansion begins with "{", regard it as bracelist when it doesn't + contain a ";". + + Parse C++ inher-intro when there's a template split over 2 lines. + + * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more + rigorously the search for "class" etc. followed by ":". + + * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for + random languages a regexp which never matches rather than nil. + + Handle "/"s more accurately in test for virtual semicolons (AWK Mode). + + * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re) + (c-awk-regexp-one-line-possibly-open-char-list-re) + (c-awk-one-line-possibly-open-regexp-re) + (c-awk-one-line-non-syn-ws*-re): Remove. + (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re) + (c-awk-space*-/-re, c-awk-space*-regexp-/-re) + (c-awk-space*-unclosed-regexp-/-re): New constants. + (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which + aren't regexp delimiters. + + * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in + handling for a rare situation in AWK Mode involving unterminated + strings/regexps. + +2013-08-23 Glenn Morris + + * files.el (auto-mode-alist): Use sh-mode for .bash_history. + + * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts. + + * files.el (create-file-buffer): If the result would begin with + spaces, prepend a "|" instead of removing them. (Bug#15162) + +2013-08-23 Stefan Monnier + + * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away + text-properties (bug#15155). + + * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't + exist any more. + (calc-keypad-redraw): Remove unused var `pad'. + (calc-keypad-press): Remove unused var `menu'. + +2013-08-23 Martin Rudalics + + * window.el (display-buffer-pop-up-frame): + Call pop-up-frame-function with BUFFER current so `make-frame' will + use it as the new frame's buffer (Bug#15133). + +2013-08-22 Stefan Monnier + + * calendar/timeclock.el: Minor cleanups. + (timeclock-ask-before-exiting, timeclock-use-display-time): + Use `symbol'. + (timeclock-modeline-display): Define as alias before the + actual definition. + (timeclock-mode-line-display): Use define-minor-mode. + (timeclock-day-list-template): Make it a function, add an argument. + (timeclock-day-list-required, timeclock-day-list-length) + (timeclock-day-list-debt, timeclock-day-list-span) + (timeclock-day-list-break): Adjust calls accordingly. + +2013-08-21 Stefan Monnier + + * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression): + Use read--expression so that completion works again. + +2013-08-21 Sam Steingold + + Add rudimentary inferior shell interaction + * progmodes/sh-script.el (sh-shell-process): New buffer-local variable. + (sh-set-shell): Reset it. + (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step): + New commands (bound to C-c C-z, C-c C-d, and C-c C-n). + +2013-08-20 Stefan Monnier + + * align.el: Use lexical-binding. + (align-region): Simplify accordingly. + +2013-08-20 Michael Albinus + + * minibuffer.el (completion--sifn-requote): Bind `non-essential'. + + * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of + `non-essential' up. + +2013-08-17 Michael Albinus + + * net/tramp.el: + * net/tramp-adb.el: + * net/tramp-cmds.el: + * net/tramp-ftp.el: + * net/tramp-gvfs.el: + * net/tramp-gw.el: + * net/tramp-sh.el: Don't wrap external variable declarations by + `eval-when-compile'. + +2013-08-16 Lars Magne Ingebrigtsen + + * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs + now that Emacs supports ImageMagick animations. + +2013-08-16 Michael Albinus + + * net/tramp-cmds.el (top): Don't declare `buffer-name'. + (tramp-append-tramp-buffers): Rewrite buffer local variables part. + +2013-08-16 Martin Rudalics + + * window.el (mouse-autoselect-window-select): Do autoselect when + mouse pointer is on margin. + +2013-08-16 William Parsons (tiny change) + + * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972) + +2013-08-16 Glenn Morris + + * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd): + Handle "Remote Directory" response of some clients. (Bug#15058) + + * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local): + Tweak warning. (Bug#14926) + + * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove. + (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095) + + * image-mode.el (image-mode-map): Add menu items to reverse, + increase, decrease, reset animation speed. + (image--set-speed, image-increase-speed, image-decrease-speed) + (image-reverse-speed, image-reset-speed): New functions. + (image-mode-map): Add bindings for speed commands. + + * image.el (image-animate-get-speed, image-animate-set-speed): + New functions. + (image-animate-timeout): Respect image :speed property. + +2013-08-15 Stefan Monnier + + * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the + previous line (bug#15101). + (debugger-eval-expression, debugger-record-expression): + Use read--expression (bug#15102). + +2013-08-15 Michael Albinus + + Remove byte compiler warnings, visible when compiling with + `byte-compile-force-lexical-warnings' set to t. + + * net/tramp.el (tramp-debug-message, tramp-message, tramp-error) + (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF. + (tramp-handle-unhandled-file-name-directory) + (tramp-handle-file-notify-add-watch, tramp-action-login) + (tramp-action-succeed, tramp-action-permission-denied) + (tramp-action-terminal, tramp-action-process-alive): Prefix unused + arguments with "_". + + * net/tramp-adb.el (tramp-adb-parse-device-names) + (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file) + (tramp-adb-handle-copy-file): Prefix unused arguments with "_". + (tramp-adb-handle-file-truename): Remove unused arguments. + + * net/tramp-cache.el (tramp-flush-directory-property) + (tramp-flush-connection-property, tramp-list-connections) + (tramp-parse-connection-properties): Prefix unused arguments with "_". + + * net/tramp-compat.el (tramp-compat-make-temp-file): + Rename FILENAME to F. + + * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch) + (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names) + (tramp-zeroconf-parse-workstation-device-names) + (tramp-zeroconf-parse-webdav-device-names) + (tramp-synce-parse-device-names): Prefix unused arguments with "_". + + * net/tramp-gw.el (tramp-gw-gw-proc-sentinel) + (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_". + + * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused + arguments. + (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file) + (tramp-sh-handle-insert-file-contents-literally) + (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments + with "_". + (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt): + Remove unused variables. + + * net/tramp-smb.el (tramp-smb-handle-copy-directory) + (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file) + (tramp-smb-read-file-entry): Prefix unused arguments with "_". + + * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte): + Make them a defconst. + (tramp-uuencode-region): Remove unused variable. + +2013-08-14 Juanma Barranquero + + * frameset.el (frameset--prop-setter): New function. + (frameset-prop): Add gv-setter declaration. + (frameset-filter-minibuffer): Deal with the case that the minibuffer + parameter was already set in FILTERED. Doc fix. + (frameset--record-minibuffer-relationships): Allow saving a + minibufferless frame without its corresponding minibuffer frame. + (frameset--reuse-frame): Accept a match from an orphaned minibufferless + frame, if the frame id matches. + (frameset--minibufferless-last-p): Sort non-orphaned minibufferless + frames before orphaned ones. + (frameset-restore): Warn about orphaned windows, instead of error out. + +2013-08-14 Martin Rudalics + + * window.el (window-make-atom): Don't overwrite parameter + already present. + (display-buffer-in-atom-window): Handle special case where we + split an already atomic window. + (window--major-non-side-window, display-buffer-in-side-window) + (window--side-check): Ignore minibuffer window when walking + window tree. + (window-deletable-p): Return 'frame only if no other frame uses + our minibuffer window. + (record-window-buffer): Run buffer-list-update-hook. + (split-window): Make sure window--check-frame won't destroy an + existing atomic window in case the new window gets nested + inside. + (display-buffer-at-bottom): Ignore minibuffer window when + walking window tree. Don't split a side window. + (pop-to-buffer): Don't set-buffer here, the select-window call + should do that. + (mouse-autoselect-window-select): Autoselect only if we are in the + text portion of the window. + +2013-08-13 Lars Magne Ingebrigtsen + + * net/shr.el (shr-parse-image-data): New function to grab both the + data itself and the Content-Type. + (shr-put-image): Use it. + + * net/eww.el (eww-display-image): Ditto. + + * image.el (image-content-type-suffixes): New variable. + +2013-08-13 Fabián Ezequiel Gallina + + * progmodes/python.el (python-imenu--build-tree) + (python-imenu--put-parent): Simplify and Fix (GH bug 146). + +2013-08-13 Xue Fuqiao + + * simple.el (backward-word): Mention the optional argument. + +2013-08-13 Stefan Monnier + + * frameset.el (frameset--make): Rename constructor from make-frameset. + (frameset-p, frameset-valid-p): Don't autoload. + (frameset-valid-p): Use normal accessors. + +2013-08-13 Glenn Morris + + * progmodes/compile.el (compile-command): Tweak example in doc. + * obsolete/scribe.el (scribe-mode): + * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053) + + * mail/feedmail.el (feedmail-confirm-outgoing) + (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types. + + * cus-start.el (truncate-partial-width-windows): Fix type. + + * emulation/viper-init.el (viper-search-scroll-threshold): Fix type. + + * net/shr.el (shr-table-horizontal-line): Fix custom type. + +2013-08-13 Stefan Monnier + + * emacs-lisp/timer.el (timer--time-setter): New function. + (timer--time): Use it as gv-setter. + + * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when + setter is not a symbol. + +2013-08-12 Grégoire Jadi + + * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer + if sending fails. This makes debugging easier. + +2013-08-12 Juanma Barranquero + + * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in + 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite). + https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html + +2013-08-12 Eli Zaretskii + + * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib. + +2013-08-12 Glenn Morris + + * format.el (format-annotate-function): + Handle read-only text properties in the source. (Bug#14887) + +2013-08-11 Lars Magne Ingebrigtsen + + * net/eww.el (eww-display-html): Ignore coding system errors. + One web site uses "utf-8lias" as the coding system. + +2013-08-11 Juanma Barranquero + + * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil. + 2013-08-10 Juanma Barranquero + * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p. + (tutorial--detailed-help): Remove unused local variables. + (tutorial--save-tutorial-to): Use ignore-errors. + (help-with-tutorial): Use looking-at-p. + + * view.el (view-buffer-other-window, view-buffer-other-frame): + Mark unused arguments. + + * woman.el (woman-parse-colon-path, woman-parse-colon-path) + (woman-select-symbol-fonts, woman, woman-find-file) + (woman-insert-file-contents, woman-non-underline-faces): + Use string-match-p. + (woman1-unquote): Move declaration. + + * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p. + (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused + argument. Remove unused local variable. + (xml-parse-elem-type): Use string-match-p. + (xml-substitute-numeric-entities): Use ignore-errors. + * calculator.el (calculator): Mark unused argument. (calculator-paste, calculator-quit, calculator-integer-p): Use ignore-errors. @@ -173,7 +515,7 @@ (allout-up-current-level, allout-end-of-level, allout-reindent-body) (allout-yank-processing, allout-process-exposed) (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky) - (allout-latex-verbatim-quote-curr-line): Removed unused variables. + (allout-latex-verbatim-quote-curr-line): Remove unused variables. * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display) (lisp-indent-defform): Mark ignored arguments. (lisp-indent-line): Mark ignored arguments. Remove unused variables.