annotate etc/emacs.bash @ 57051:59091995520c

(msdos.o): Depend on buffer.h, commands.h, and blockinput.h. (dosfns.o): Depend on blockinput.h, window.h, dispextern.h, charset.h, and coding.h (w16select.o): Depend on buffer.h, charset.h, coding.h, and composite.h. (term.o): Depend on window.h and keymap.h. (abbrev.o): Depend on syntax.h. (callint.o): Depend on keymap.h. (casefiddle.o): Depend on charset.h and keymap.h. (category.o): Depend on keymap.h. (coding.o): Depend on dispextern.h. (cmds.o): Depend on keyboard.h and keymap.h. (dispnew.o): Depend on indent.h and intervals.h. (doc.o): Depend on keymap.h. (editfns.o): Depend on frame.h. (emacs.o): Depend on dispextern.h. (fileio.o): Don't depend on ccl.h. (filelock.o): Depend on charset.h and coding.h. (frame.o): Depend on w32term.h and macterm.h. (insdel.o): Depend on region-cache.h. (keyboard.o): Depend on keymap.h, w32term.h, and macterm.h. (minibuf.o): Depend on $(INTERVALS_SRC) and keymap.h. (search.o): Depend on $(INTERVALS_SRC). (syntax.o): Depend on keymap.h, regex.h, and $(INTERVALS_SRC). (window.o): Depend on keymap.h, blockinput.h, $(INTERVALS_SRC), xterm.h, w32term.h, and macterm.h. (xdisp.o): Depend on keyboard.h, $(INTERVALS_SRC), xterm.h, w32term.h, and macterm.h. (xfaces.o): Depend on keyboard.h, $(INTERVALS_SRC), region-cache.h, xterm.h, w32term.h, and macterm.h. (bytecode.o): Depend on dispextern.h, frame.h, and xterm.h. (data.o): Depend on frame.h. (fns.o): Depend on keymap.h, xterm.h, and blockinput.h. (print.o): Depend on termchar.h and $(INTERVALS_SRC). (lread.o): Depend on $(INTERVALS_SRC), termhooks.h, and coding.h. (intervals.o): Depend on keymap.h.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 10 Sep 2004 18:16:57 +0000
parents 695cf19ef79e
children 615a90f44f52 375f2633d815
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25853
Dave Love <fx@gnu.org>
parents:
diff changeset
1 # This defines a bash command named `edit' which contacts/resumes an
Dave Love <fx@gnu.org>
parents:
diff changeset
2 # existing emacs or starts a new one if none exists.
Dave Love <fx@gnu.org>
parents:
diff changeset
3 #
Dave Love <fx@gnu.org>
parents:
diff changeset
4 # One way or another, any arguments are passed to emacs to specify files
Dave Love <fx@gnu.org>
parents:
diff changeset
5 # (provided you have loaded `resume.el').
Dave Love <fx@gnu.org>
parents:
diff changeset
6 #
Dave Love <fx@gnu.org>
parents:
diff changeset
7 # This function assumes the emacs program is named `emacs' and is somewhere
Dave Love <fx@gnu.org>
parents:
diff changeset
8 # in your load path. If either of these is not true, the most portable
Dave Love <fx@gnu.org>
parents:
diff changeset
9 # (and convenient) thing to do is to make an alias called emacs which
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 25853
diff changeset
10 # refers to the real program, e.g.
25853
Dave Love <fx@gnu.org>
parents:
diff changeset
11 #
Dave Love <fx@gnu.org>
parents:
diff changeset
12 # alias emacs=/usr/local/bin/gemacs
Dave Love <fx@gnu.org>
parents:
diff changeset
13 #
Dave Love <fx@gnu.org>
parents:
diff changeset
14 # Written by Noah Friedman.
Dave Love <fx@gnu.org>
parents:
diff changeset
15
Dave Love <fx@gnu.org>
parents:
diff changeset
16 function edit ()
Dave Love <fx@gnu.org>
parents:
diff changeset
17 {
Dave Love <fx@gnu.org>
parents:
diff changeset
18 local windowsys="${WINDOW_PARENT+sun}"
Dave Love <fx@gnu.org>
parents:
diff changeset
19
Dave Love <fx@gnu.org>
parents:
diff changeset
20 windowsys="${windowsys:-${DISPLAY+x}}"
Dave Love <fx@gnu.org>
parents:
diff changeset
21
Dave Love <fx@gnu.org>
parents:
diff changeset
22 if [ -n "${windowsys:+set}" ]; then
Dave Love <fx@gnu.org>
parents:
diff changeset
23 # Do not just test if these files are sockets. On some systems
Dave Love <fx@gnu.org>
parents:
diff changeset
24 # ordinary files or fifos are used instead. Just see if they exist.
Dave Love <fx@gnu.org>
parents:
diff changeset
25 if [ -e "${HOME}/.emacs_server" -o -e "/tmp/esrv${UID}-"* ]; then
Dave Love <fx@gnu.org>
parents:
diff changeset
26 emacsclient "$@"
Dave Love <fx@gnu.org>
parents:
diff changeset
27 return $?
Dave Love <fx@gnu.org>
parents:
diff changeset
28 else
Dave Love <fx@gnu.org>
parents:
diff changeset
29 echo "edit: starting emacs in background..." 1>&2
Dave Love <fx@gnu.org>
parents:
diff changeset
30 fi
Dave Love <fx@gnu.org>
parents:
diff changeset
31
Dave Love <fx@gnu.org>
parents:
diff changeset
32 case "${windowsys}" in
Dave Love <fx@gnu.org>
parents:
diff changeset
33 x ) (emacs "$@" &) ;;
Dave Love <fx@gnu.org>
parents:
diff changeset
34 sun ) (emacstool "$@" &) ;;
Dave Love <fx@gnu.org>
parents:
diff changeset
35 esac
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 25853
diff changeset
36 else
25853
Dave Love <fx@gnu.org>
parents:
diff changeset
37 if jobs %emacs 2> /dev/null ; then
Dave Love <fx@gnu.org>
parents:
diff changeset
38 echo "$(pwd)" "$@" >| ${HOME}/.emacs_args && fg %emacs
Dave Love <fx@gnu.org>
parents:
diff changeset
39 else
Dave Love <fx@gnu.org>
parents:
diff changeset
40 emacs "$@"
Dave Love <fx@gnu.org>
parents:
diff changeset
41 fi
Dave Love <fx@gnu.org>
parents:
diff changeset
42 fi
Dave Love <fx@gnu.org>
parents:
diff changeset
43 }
Dave Love <fx@gnu.org>
parents:
diff changeset
44
Dave Love <fx@gnu.org>
parents:
diff changeset
45
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
46 # arch-tag: 1e1b74b9-bf2c-4b23-870f-9eebff7515cb