mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
*** empty log message ***
This commit is contained in:
parent
a8f0f55100
commit
61298e176c
7 changed files with 106 additions and 1 deletions
|
|
@ -49,6 +49,25 @@ invalid pointer from string_free_list.
|
|||
|
||||
** Fix those modes that still use compile-internal, to not use it.
|
||||
|
||||
** Fix recognition of shell's `dirs' command.
|
||||
|
||||
Is his change right?
|
||||
|
||||
Date: Wed, 29 Jun 2005 18:21:28 -0500 (CDT)
|
||||
From: kevin.gal@verizon.net
|
||||
|
||||
When I use tcsh (which echoes command input) in a shell buffer,
|
||||
entering "M-x dirs" fails because it mistakens the echoed "dirs"
|
||||
string as the directory string to use as input when changing the
|
||||
buffers default directory. The attached gziped patch file contains a
|
||||
fix. The patch also binds the "dirs" command to "\e\C-m" in
|
||||
shell-mode-map (previously unbound) to make it easy to invoke.
|
||||
Finally, a test has been added to see if "shell-dirstack-query" is
|
||||
non-nil. If so, it is not overwritten.
|
||||
|
||||
To enable the fix, the user must set comint-process-echoes to t.
|
||||
|
||||
|
||||
** Bug in ebrowse
|
||||
|
||||
Date: Fri, 27 May 2005 17:35:48 +0200
|
||||
|
|
|
|||
4
etc/NEWS
4
etc/NEWS
|
|
@ -2798,6 +2798,10 @@ version 5.0.2; see MH-E-NEWS for details.
|
|||
|
||||
** Calendar changes:
|
||||
|
||||
+++
|
||||
*** You can now use < and >, instead of C-x < and C-x >, to scroll
|
||||
the calendar left or right. (The old key bindings still work too.)
|
||||
|
||||
+++
|
||||
*** There is a new calendar package, icalendar.el, that can be used to
|
||||
convert Emacs diary entries to/from the iCalendar format.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,49 @@
|
|||
2005-08-09 Richard M. Stallman <rms@gnu.org>
|
||||
|
||||
* progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
|
||||
(sql-read-passwd): Use read-passwd.
|
||||
|
||||
* progmodes/idlw-toolbar.el (idlwave-toolbar)
|
||||
(idlwave-toolbar-is-possible): Add defvars.
|
||||
|
||||
* progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
|
||||
Avoid warnings.
|
||||
|
||||
* progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
|
||||
(idlwave-system-class-info, idlwave-executive-commands-alist):
|
||||
Use defvar.
|
||||
|
||||
* progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
|
||||
|
||||
* mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
|
||||
Avoid warnings.
|
||||
|
||||
* mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
|
||||
and content-type: headers.
|
||||
|
||||
* eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
|
||||
|
||||
* emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
|
||||
and rename some of them to be more self-explanatory.
|
||||
|
||||
* calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
|
||||
|
||||
* startup.el (command-line-1): Implement -scriptload.
|
||||
|
||||
* replace.el (occur-engine): Initial *Occur* output not undoable.
|
||||
|
||||
* menu-bar.el (menu-bar-file-menu): Rename some menu items
|
||||
and improve help strings.
|
||||
|
||||
* isearch.el (isearch-repeat): When changing direction,
|
||||
mark search successful.
|
||||
|
||||
* ediff-init.el: Use (featurep 'xemacs).
|
||||
|
||||
* comint.el (send-invisible): Identify buffer, if not selected.
|
||||
|
||||
* align.el: Delete autoload for c-guess-basic-syntax.
|
||||
|
||||
2005-08-09 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
;; Authors: Reto Zimmermann <reto@gnu.org>
|
||||
;; Rodney J. Whitby <software.vhdl-mode@rwhitby.net>
|
||||
;; Maintainer: FSF
|
||||
;; Maintainer: FSF (Because Reto Zimmermann seems to have disappeared)
|
||||
;; Keywords: languages vhdl
|
||||
|
||||
(defconst vhdl-version "3.32.12"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,27 @@
|
|||
2005-08-09 Richard M. Stallman <rms@gnu.org>
|
||||
|
||||
* tips.texi (Coding Conventions): Minor cleanup.
|
||||
|
||||
* modes.texi (Defining Minor Modes): Explain when init-value
|
||||
can be non-nil.
|
||||
|
||||
* elisp.texi (Top): Update submenu for Minibuffer.
|
||||
|
||||
* minibuf.texi (Minibuffer Misc): Node split up.
|
||||
(Minibuffer Commands, Minibuffer Windows, Minibuffer Contents)
|
||||
(Recursive Mini): New nodes split out from Minibuffer Misc.
|
||||
(Minibuffer Misc): Document max-mini-window-height.
|
||||
|
||||
* hash.texi (Defining Hash): Delete stray paren in example.
|
||||
|
||||
* display.texi (Echo Area Customization): Don't define
|
||||
max-mini-window-height here; xref instead.
|
||||
|
||||
* commands.texi (Event Input Misc): Update while-no-input.
|
||||
|
||||
* advice.texi (Advising Functions): Explain when to use advice
|
||||
and when to use a hook.
|
||||
|
||||
2005-07-30 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* makefile.w32-in (info): Don't run install-info.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,9 @@
|
|||
2005-08-09 Richard M. Stallman <rms@gnu.org>
|
||||
|
||||
* files.texi (Comparing Files): Clarify compare-windows.
|
||||
|
||||
* calendar.texi (Scroll Calendar): Document < and > in calendar.
|
||||
|
||||
2005-08-09 Juri Linkov <juri@jurta.org>
|
||||
|
||||
* info.texi (Help-P): Replace `Prev' with `Previous'.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,9 @@
|
|||
2005-08-09 Richard M. Stallman <rms@gnu.org>
|
||||
|
||||
* bytecode.c (BYTE_CODE_QUIT): Throw t to Vthrow_on_input.
|
||||
|
||||
* lisp.h (QUIT): Throw t to Vthrow_on_input.
|
||||
|
||||
2005-08-09 Thien-Thi Nguyen <ttn@gnu.org>
|
||||
|
||||
* floatfns.c (Fexpt): Use floats for negative exponent.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue