]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 27 Apr 2004 22:02:27 +0000 (22:02 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 27 Apr 2004 22:02:27 +0000 (22:02 +0000)
etc/NEWS
lisp/ChangeLog
src/ChangeLog

index 6ad65268e4f517122ddb87288a21caa79f406e3f..fe5447006fff019cf3b8866ce52ab9a40d49fb0a 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1741,6 +1741,9 @@ to view diffs or log entries directly from vc-annotate-mode:
 \f
 * New modes and packages in Emacs 21.4
 
+** The wdired.el package allows you to use normal editing commands on dired
+buffers to change filenames, permissions, etc...
+
 ** The new python.el package is used to edit Python and Jython programs.
 
 ** The URL package (which had been part of W3) is now part of Emacs.
index c01308a4e1a36c94083a770d15276eaa20f00dae..68a2ebf185d1169500f7684adacb53f0de050cf5 100644 (file)
@@ -1,9 +1,8 @@
 2004-04-28  Masatake YAMATO  <jet@gyve.org>
 
-       * subr.el (remove-overlays): Make arguments
-       optional.
+       * subr.el (remove-overlays): Make arguments optional.
 
-       * wid-edit.el (widget-specify-button): Put evaporate to the 
+       * wid-edit.el (widget-specify-button): Put evaporate to the
        overlay for sample.
        (widget-specify-sample): Put evaporate to the overlay for sample.
        (widget-specify-doc): Put evaporate to the overlay for documentation.
@@ -17,8 +16,8 @@
 
        * net/browse-url.el (browse-url-netscape-sentinel)
        (browse-url-mozilla-sentinel, browse-url-galeon-sentinel)
-       (browse-url-epiphany-sentinel, browse-url-mosaic): Use
-       browse-url-*-program instead of a literal program name.
+       (browse-url-epiphany-sentinel, browse-url-mosaic):
+       Use browse-url-*-program instead of a literal program name.
 
 2004-04-27  Kevin Ryde  <user42@zip.com.au>
 
        (type-break-good-break-interval, type-break-demo-boring-stats)
        (type-break-terse-messages, type-break-file-name): New defcustoms.
        (type-break-post-command-hook)
-       (type-break-warning-countdown-string): Quote variable names in
-       doc.
-       (type-break-interval-start, type-break-auto-save-file-name): New
-       defvars.
+       (type-break-warning-countdown-string): Quote variable names in doc.
+       (type-break-interval-start, type-break-auto-save-file-name): New vars.
        (type-break-mode): Document type-break-good-break-interval and the
        "session" file.  Schedule break according to the session file.
        Kill session file buffer on exit.  Organise for save-some-buffers
@@ -54,8 +51,8 @@
        (type-break-get-previous-count): New defuns.
        (type-break): Avoid break querying after a completed break in the
        case where the query was initiated during user invocation of the
-       break.  Optional terse messages.  Use
-       type-break-good-break-interval if type-break-good-rest-interval is
+       break.  Optional terse messages.
+       Use type-break-good-break-interval if type-break-good-rest-interval is
        nil.  File the break time.
        (type-break-schedule): New optional args for overriding the use of
        the current time.
@@ -64,8 +61,7 @@
        (type-break-check): File the keystroke count.
        (type-break-do-query): Prevent a second query when the break is
        interrupted.  Optional terse message.
-       (type-break-keystroke-reset): Record the start of a typing
-       interval.
+       (type-break-keystroke-reset): Record the start of a typing interval.
        (type-break-demo-boring): Optional terse messages.  Display word
        per minute and keystroke counts according to
        type-break-demo-boring-stats.
 
 2004-04-26  Eli Zaretskii  <eliz@gnu.org>
 
-       * progmodes/gud.el (gud-pdb-command-name): Change default to
-       "pydb".
+       * progmodes/gud.el (gud-pdb-command-name): Change default to "pydb".
 
 2004-04-25  Luc Teirlinck  <teirllm@auburn.edu>
 
        Delete functions.
        (compilation-get-file-structure): New function inherits
        functionality of the two preceding ones.
-       (compilation-internal-error-properties, compilation-fake-loc): Use
-       it so that different paths to the same file share the same
+       (compilation-internal-error-properties, compilation-fake-loc):
+       Use it so that different paths to the same file share the same
        markers.  Also optimize finding adjacent marker slightly.
 
 2004-04-25  Kim F. Storm  <storm@cua.dk>
        (rmail-start-mail): Support rmail-mail-new-frame even on
        terminals that can display only one frame at a time.
 
+2004-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/checkdoc.el (checkdoc-output-error-regex-alist): New var.
+       (checkdoc-output-font-lock-keywords): Remove error regexp.
+       (checkdoc-output-mode-map): Remove.
+       (checkdoc-output-mode): Derive from compilation-mode.
+       (checkdoc-find-error-mouse, checkdoc-find-error): Remove.
+
+       * dired.el (dired-mode-map): Add a menu entry for wdired.
+
+       * emacs-lisp/rx.el (rx-syntax): Move sregex style syntax to code.
+       (rx-bracket, rx-check-any, rx-any): Clean up name space.
+
+       * wdired.el: (wdired-mode-map): Move init into declaration.
+       Fix `return' binding.
+       (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
+       Use force-mode-line-update.
+       (wdired-get-filename): Use `unless'.
+       (wdired-preprocess-files): Don't assume names have no \n and use / for
+       dir separator.
+       (wdired-normalize-filename): Use replace-regexp-in-string.
+       (wdired-load-hooks): Remove.
+       (wdired-mode-hooks): Rename to wdired-mode-hook.
+
+       * info-look.el: Add support for cfengine-mode.
+       (info-lookup-setup-mode): Use dolist.
+
+2004-04-23  Juan Le\e,As\e(Bn Lahoz Garc\e,Am\e(Ba  <juan-leon.lahoz@tecsidel.es>
+
+       * wdired.el: New file.
+
 2004-04-23  Juanma Barranquero  <lektu@terra.es>
 
        * ielm.el (inferior-emacs-lisp-mode): Fix docstring.
 
        * vc.el (vc-print-log): Likewise.
 
+2004-04-20  Dave Love  <fx@gnu.org>
+
+       * emacs-lisp/rx.el: Doc fixes.
+       (rx-constituents): Add/extend many forms.
+       (rx-check): Check form is a list.
+       (bracket): Defvar.
+       (rx-check-any, rx-any, rx-check-not): Modify.
+       (rx-not): Simplify.
+       (rx-trans-forms, rx-=, rx->=, rx-**, rx-not-char, rx-not-syntax): New.
+       (rx-kleene): Use rx-trans-forms.
+       (rx-quote-for-set): Delete.
+       (rx): Allow multiple args.
+
 2004-04-23  Kenichi Handa  <handa@m17n.org>
 
-       * international/mule-util.el (char-displayable-p): Simplified by
+       * international/mule-util.el (char-displayable-p): Simplify by
        using internal-char-font.
 
 2004-04-23  Juanma Barranquero  <lektu@terra.es>
index 3d9451bf59b0514ed96b986fb93887d4734a2ff6..c3314cb98e53d0897a061cb6266289cd307549d5 100644 (file)
@@ -1,3 +1,10 @@
+2004-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * xdisp.c (x_produce_glyphs): Fix the proverbial int/Lisp_Object mixup.
+       (on_hot_spot_p): Make sure we always return a value.
+       (Flookup_image_map): Remove unused var ix and iy.
+       (note_mode_line_or_margin_highlight): Remove unused var `image'.
+
 2004-04-27  Eli Zaretskii  <eliz@gnu.org>
 
        * msdos.c (init_environment): If one of the TMP... environment