]> code.delx.au - gnu-emacs/blobdiff - lisp/ChangeLog
* international/mule.el (autoload-coding-system, with-category-table)
[gnu-emacs] / lisp / ChangeLog
index 2a0e4461c5781ea530deee73035ea4718cfcae7c..a38f10e71e7a44974a781d1054c6df6d5b650637 100644 (file)
@@ -1,3 +1,132 @@
+2008-11-12  Juanma Barranquero  <lekktu@gmail.com>
+
+       * international/mule.el (autoload-coding-system, with-category-table)
+       (ctext-non-standard-encodings-alist): Fix typos in docstrings.
+       (coding-system-equal, set-buffer-process-coding-system): Doc fixes.
+       (set-buffer-file-coding-system, revert-buffer-with-coding-system)
+       (set-file-name-coding-system, ctext-pre-write-conversion)
+       (auto-coding-functions, find-auto-coding, modify-coding-system-alist):
+       Reflow docstrings.
+       (charset-list, set-coding-priority): Remove redundant obsolescence info.
+       (charset-id, charset-bytes, make-coding-system): Add obsolescence info.
+       (char-valid-p): Define with `define-obsolete-function-alias'.
+
+       * textmodes/artist.el (artist-mode): Fix typos in docstring.
+
+2008-11-12  Sam Steingold  <sds@gnu.org>
+
+       * vc-cvs.el (vc-cvs-parse-root): Handle roots without colon
+       between hostname and path.
+
+2008-11-11  Juri Linkov  <juri@jurta.org>
+
+       * dired-aux.el (dired-isearch-filenames)
+       (dired-isearch-filenames-regexp):
+       Let-bind isearch-message-prefix-add to "filename ".
+
+       * isearch.el (isearch-message-prefix-add)
+       (isearch-message-suffix-add): New variables.
+       (isearch-message-prefix): Show additional text from
+       `isearch-message-prefix-add' before "I-search".
+       (isearch-message-suffix): Show additional text from
+       `isearch-message-suffix-add' at the end.
+
+       * isearch.el (isearch-lazy-highlight-search): Use a loop like in
+       `isearch-search'.  Call isearch-success-function to skip matches
+       outside the current isearch scope.  Let-bind search-invisible to
+       nil to not match invisible text.
+
+       * isearch.el (isearch-query-replace, isearch-highlight-regexp):
+       Let-bind `isearch-recursive-edit' to nil to prevent calling
+       `exit-recursive-edit' in `isearch-done' that terminates the
+       execution of these commands when it is non-nil.  Call
+       `exit-recursive-edit' explicitly at the end.
+       (isearch-occur): For word search construct the correct regexp
+       with word boundaries to proceed with occur.
+
+       * isearch.el (isearch-search-fun): Compare the length of the
+       current search string with the length of the string from the
+       previous search state to detect the situation when the user
+       adds or removes characters in the search string.
+       Use word-search-forward-lax and word-search-backward-lax in this
+       case, and otherwise word-search-forward and word-search-backward.
+
+2008-11-11  Sam Steingold  <sds@gnu.org>
+
+       * mouse.el (mouse-buffer-menu-mode-groups): Place "Annotate" into
+       the "Version Control" group (for C-x v g).
+
+2008-11-11  Juanma Barranquero  <lekktu@gmail.com>
+
+       * server.el (server-process-filter): Fix typos and reflow docstring.
+
+2008-11-11  Martin Rudalics  <rudalics@gmx.at>
+
+       * mail/footnote.el (footnote-mode): Improve doc-string.
+       Suggested by <jidanni@jidanni.org>.  (Bug#1318)
+
+2008-11-11  Chong Yidong  <cyd@stupidchicken.com>
+
+       * cus-edit.el (Custom-mode): Set up tool-bar-map unconditionally.
+
+2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
+
+       * mail/smtpmail.el (smtpmail-open-stream): Use
+       `starttls-any-program-available'.  Auto-load starttls.el for it.
+
+2008-11-08  Chong Yidong  <cyd@stupidchicken.com>
+
+       * dired.el (dired-read-dir-and-switches): Revert to 2007-11-22
+       version (bug@1285).
+
+2008-11-08  Eli Zaretskii  <eliz@gnu.org>
+
+       * startup.el (command-line): Ignore init-file-user when checking
+       user's home directory on MS-DOS as well.
+
+2008-11-07  Sam Steingold  <sds@gnu.org>
+
+       * progmodes/cc-cmds.el (c-defun-name): Fix CLISP DEFUN handling.
+
+2008-11-07  Juanma Barranquero  <lekktu@gmail.com>
+
+       * frame.el (make-frame-on-display): Use `string-match-p'.
+
+2008-11-07  Glenn Morris  <rgm@gnu.org>
+
+       * progmodes/cc-defs.el (cl-macroexpand-all): Fix declaration.
+
+2008-11-07  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * emacs-lisp/lisp-mode.el (lisp-mode-variables): Add new argument
+       to initialize font-lock keyword case sensitivity.
+       (lisp-mode): Use it.
+
+2008-11-06  Glenn Morris  <rgm@gnu.org>
+
+       * eshell/esh-maint.el: Remove unused file.
+
+       * progmodes/cc-defs.el (cl-macroexpand-all): Declare.
+
+       * cus-edit.el (custom-comment-tag): Doc fix.
+       (custom-comment, custom-variable-value-create, custom-face):
+       Use face names sans -face suffix rather than aliases.
+
+2008-11-05  Jay Belanger  <jay.p.belanger@gmail.com>
+
+       * calc/calc.el (calc-quit): Use `window-full-width-p' to check
+       window width.
+
+2008-11-05  Chong Yidong  <cyd@stupidchicken.com>
+
+       * server.el (server-process-filter): Only default to emacsclient's
+       terminal in daemon mode.
+
+2008-11-05  Martin Rudalics  <rudalics@gmx.at>
+
+       * window.el (quit-window): Restore prefix argument behavior
+       removed in 2008-10-30 change.  (Bug#1308)
+
 2008-11-05  Tassilo Horn  <tassilo@member.fsf.org>
 
        * doc-view.el (doc-view-mode): Bugfix: Add conversion killing