annotate etc/emacs.bash @ 82418:08e51b086d98

(calc-language-alist): Add texinfo-mode.
author Jay Belanger <jay.p.belanger@gmail.com>
date Fri, 17 Aug 2007 03:54:13 +0000
parents 713172dcf518
children 1dd7437446ea ccaac0911639 f55f9811f5d7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
75457
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
1 ### emacs.bash --- contact/resume an existing Emacs, or start a new one
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
2
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
3 ## Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
4 ## Free Software Foundation, Inc.
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
5
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
6 ## Author: Noah Friedman
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
7
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
8 ## This file is part of GNU Emacs.
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
9
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
10 ## GNU Emacs is free software; you can redistribute it and/or modify
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
11 ## it under the terms of the GNU General Public License as published by
78271
713172dcf518 Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents: 75457
diff changeset
12 ## the Free Software Foundation; either version 3, or (at your option)
75457
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
13 ## any later version.
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
14
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
15 ## GNU Emacs is distributed in the hope that it will be useful,
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
16 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
17 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
18 ## GNU General Public License for more details.
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
19
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
20 ## You should have received a copy of the GNU General Public License
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
21 ## along with GNU Emacs; see the file COPYING. If not, write to the
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
22 ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
23 ## Boston, MA 02110-1301, USA.
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
24
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
25 ### Commentary:
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
26
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
27 ## This defines a bash command named `edit' which contacts/resumes an
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
28 ## existing emacs or starts a new one if none exists.
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
29
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
30 ## One way or another, any arguments are passed to emacs to specify files
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
31 ## (provided you have loaded `resume.el').
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
32
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
33 ## This function assumes the emacs program is named `emacs' and is somewhere
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
34 ## in your load path. If either of these is not true, the most portable
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
35 ## (and convenient) thing to do is to make an alias called emacs which
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
36 ## refers to the real program, e.g.
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
37 ##
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
38 ## alias emacs=/usr/local/bin/gemacs
25853
Dave Love <fx@gnu.org>
parents:
diff changeset
39
Dave Love <fx@gnu.org>
parents:
diff changeset
40 function edit ()
Dave Love <fx@gnu.org>
parents:
diff changeset
41 {
Dave Love <fx@gnu.org>
parents:
diff changeset
42 local windowsys="${WINDOW_PARENT+sun}"
Dave Love <fx@gnu.org>
parents:
diff changeset
43
Dave Love <fx@gnu.org>
parents:
diff changeset
44 windowsys="${windowsys:-${DISPLAY+x}}"
Dave Love <fx@gnu.org>
parents:
diff changeset
45
Dave Love <fx@gnu.org>
parents:
diff changeset
46 if [ -n "${windowsys:+set}" ]; then
Dave Love <fx@gnu.org>
parents:
diff changeset
47 # Do not just test if these files are sockets. On some systems
Dave Love <fx@gnu.org>
parents:
diff changeset
48 # ordinary files or fifos are used instead. Just see if they exist.
59923
615a90f44f52 Update the name of the socket of the Emacs server.
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
49 if [ -e "${HOME}/.emacs_server" -o -e "/tmp/emacs${UID}/server" ]; then
25853
Dave Love <fx@gnu.org>
parents:
diff changeset
50 emacsclient "$@"
Dave Love <fx@gnu.org>
parents:
diff changeset
51 return $?
Dave Love <fx@gnu.org>
parents:
diff changeset
52 else
Dave Love <fx@gnu.org>
parents:
diff changeset
53 echo "edit: starting emacs in background..." 1>&2
Dave Love <fx@gnu.org>
parents:
diff changeset
54 fi
Dave Love <fx@gnu.org>
parents:
diff changeset
55
Dave Love <fx@gnu.org>
parents:
diff changeset
56 case "${windowsys}" in
Dave Love <fx@gnu.org>
parents:
diff changeset
57 x ) (emacs "$@" &) ;;
Dave Love <fx@gnu.org>
parents:
diff changeset
58 sun ) (emacstool "$@" &) ;;
Dave Love <fx@gnu.org>
parents:
diff changeset
59 esac
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 25853
diff changeset
60 else
25853
Dave Love <fx@gnu.org>
parents:
diff changeset
61 if jobs %emacs 2> /dev/null ; then
Dave Love <fx@gnu.org>
parents:
diff changeset
62 echo "$(pwd)" "$@" >| ${HOME}/.emacs_args && fg %emacs
Dave Love <fx@gnu.org>
parents:
diff changeset
63 else
Dave Love <fx@gnu.org>
parents:
diff changeset
64 emacs "$@"
Dave Love <fx@gnu.org>
parents:
diff changeset
65 fi
Dave Love <fx@gnu.org>
parents:
diff changeset
66 fi
Dave Love <fx@gnu.org>
parents:
diff changeset
67 }
Dave Love <fx@gnu.org>
parents:
diff changeset
68
Dave Love <fx@gnu.org>
parents:
diff changeset
69
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
70 # arch-tag: 1e1b74b9-bf2c-4b23-870f-9eebff7515cb
75457
873c558e1383 Add FSF copyright and GPL. Copyright years from those where this file
Glenn Morris <rgm@gnu.org>
parents: 59923
diff changeset
71 ### emacs.bash ends here