annotate etc/emacs.bash @ 41266:c08a55ae8e5d

(calc-wrapper, calc-slow-wrapper) (math-showing-full-precision, math-with-extra-prec, math-working) (calc-with-default-simplification) (calc-with-trail-buffer): Use backtick. (Math-zerop, Math-integer-negp, Math-integer-posp, Math-negp) (Math-looks-negp, Math-posp, Math-integerp, Math-natnump) (Math-ratp, Math-realp, Math-anglep, Math-numberp, Math-scalarp) (Math-vectorp, Math-messy-integerp, Math-objectp, Math-objvecp) (Math-integer-neg, Math-equal, Math-lessp, Math-primp) (Math-num-integerp, Math-bignum-test, Math-equal-int) (Math-natnum-lessp, math-format-radix-digit): Change to `defsubst'. (calc-record-compilation-date-macro): Deleted. Callers updated. (math-format-radix-digit): Move to calc-bin.el. Change all toplevel `setq' forms to `defvar' forms, and move them before their first use. Use `when', `unless'. Remove trailing periods from error forms. Add description and headers suggested by Emacs Lisp coding conventions.
author Colin Walters <walters@gnu.org>
date Mon, 19 Nov 2001 07:35:49 +0000
parents e96ffe544684
children 23a1cea22d13
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
Dave Love <fx@gnu.org>
parents:
diff changeset
10 # refers to the real program, e.g.
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
Dave Love <fx@gnu.org>
parents:
diff changeset
36 else
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