annotate etc/emacs.bash @ 43968:7ec801358b7e

(Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily) (QClocal, QCremote, QCserver, QCdatagram, QCnowait, QCnoquery,QCstop) (QCcoding, QCoptions, QCfilter, QCsentinel, QClog, QCfeature): New variables. (NETCONN1_P): New macro. (DATAGRAM_SOCKETS): New conditional symbol. (datagram_address): New array. (DATAGRAM_CONN_P, DATAGRAM_CHAN_P): New macros. (status_message): Use concat3. (Fprocess_status): Add `listen' status to doc string. Return `stop' for a stopped network process. (Fset_process_buffer): Update contact plist for network process. (Fset_process_filter): Ditto. Don't enable input for stopped network processes. Server must listen, even if filter is t. (Fset_process_query_on_exit_flag, Fprocess_query_on_exit_flag): New functions. (Fprocess_kill_without_query): Removed. Now defined in simple.el. (Fprocess_contact): Added KEY argument. Handle datagrams. (list_processes_1): Optionally show only processes with the query on exit flag set. Dynamically adjust column widths. Omit tty column if not needed. Report stopped network processes. Identify server and datagram network processes. (Flist_processes): New optional arg `query-only'. (conv_sockaddr_to_lisp, get_lisp_to_sockaddr_size) (conv_lisp_to_sockaddr, set_socket_options) (network_process_featurep, unwind_request_sigio): New helper functions. (Fprocess_datagram_address, Fset_process_datagram_address): (Fset_network_process_options): New lisp functions. (Fopen_network_stream): Removed. Now defined in simple.el. (Fmake_network_process): New lisp function. Code is based on previous Fopen_network_stream, but heavily reworked with new property list based argument list, support for datagrams, server processes, and local sockets in addition to old client-only functionality. (server_accept_connection): New function. (wait_reading_process_input): Use it to handle incoming connects. Do not enable input on a new connection if process is stopped. (read_process_output): Handle datagram sockets. Use 2k buffer for them. (send_process): Handle datagram sockets. (Fstop_process, Fcontinue_process): Apply to network processes. A stopped network process is indicated by setting command field to t . (Fprocess_send_eof): No-op if datagram connection. (Fstatus_notify): Don't read input for a stream server socket or a stopped network process. (init_process): Initialize datagram_address array. (syms_of_process): Intern and staticpro new variables, defsubr new functions.
author Kim F. Storm <storm@cua.dk>
date Sun, 17 Mar 2002 20:20:33 +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