diff options
author | Glenn Morris <rgm@gnu.org> | 2007-09-21 03:48:43 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-09-21 03:48:43 +0000 |
commit | 6f022c19548c562a1bc01559d6655857886fc9f6 (patch) | |
tree | e5b76e3bff6da0fec78dc842133da7fd3a488f06 | |
parent | 44f9ac8a4640c7d49cde5e8b657f7e642a871bce (diff) |
Adapt for removal of emacstool.
-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 b619b4f61d..b1677cb669 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 c207e5ffe9..79ce7840d9 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 2fc1097917..6b6e4927ba 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 |