diff options
-rw-r--r-- | etc/ChangeLog | 1 | ||||
-rw-r--r-- | etc/emacs.bash | 2 | ||||
-rw-r--r-- | src/ChangeLog | 4 |
3 files changed, 6 insertions, 1 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index b619b4f61d7..b1677cb669f 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog @@ -1,6 +1,7 @@ 2007-09-21 Glenn Morris <rgm@gnu.org> * emacstool.1: Remove file. + * emacs.bash: Adapt for removal of emacstool. 2007-09-16 Glenn Morris <rgm@gnu.org> diff --git a/etc/emacs.bash b/etc/emacs.bash index c207e5ffe9e..79ce7840d93 100644 --- a/etc/emacs.bash +++ b/etc/emacs.bash @@ -55,7 +55,7 @@ function edit () case "${windowsys}" in x ) (emacs "$@" &) ;; - sun ) (emacstool "$@" &) ;; + sun ) echo "unsupported window system"; return 1 ;; esac else if jobs %emacs 2> /dev/null ; then diff --git a/src/ChangeLog b/src/ChangeLog index 2fc10979176..6b6e4927ba1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2007-09-21 Glenn Morris <rgm@gnu.org> + + * Makefile.in (emacstool): Remove target. + 2007-09-21 Markus Triska <markus.triska@gmx.at> * xterm.c (x_delete_display): Compile session management |