Mercurial > emacs
annotate lisp/unused.el @ 3782:5b61a650f347
Changes for correct pgrp behavior from Bob Glickstein
<bobg@zindigo.z-code.com>:
* m/iris4d.h (LIB_STANDARD): Do include -lbsd here.
* s/irix4-0.h (USE_IRIX_BSDPGRP): #define this.
(GETPGRP_NO_ARG): Don't #define this.
* callproc.c [USE_IRIX_BSDPGRP] (Fcall_process): Call BSDsetpgrp
instead of plain setpgrp.
[USE_IRIX_BSDPGRP] (child_setup): Same.
* emacs.c [GETPGRP_NO_ARG] (main, shut_down_emacs): CPP clauses
deleted; this flag isn't needed anymore.
[USE_IRIX_BSDPGRP] (main, shut_down_emacs): Call BSDsetpgrp and
BSDgetpgrp instead of plain setpgrp and getpgrp.
* process.c [USE_IRIX_BSDPGRP] (create_process): Don't call
setpgrp before opening the tty. Call BSDsetpgrp instead of
setpgrp, after opening the tty.
* sysdep.c [USE_IRIX_BSDPGRP] (sys_suspend,
narrow_foreground_group, widen_foreground_group): Call BSDgetpgrp
and BSDsetpgrp instead of getpgrp and setpgrp.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Wed, 16 Jun 1993 23:49:54 +0000 |
parents | 7e4999005da1 |
children | 253f761ad37b |
rev | line source |
---|---|
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1
diff
changeset
|
1 ;;; unused.el --- editing commands in GNU Emacs that turned out not to be used. |
896 | 2 ;;; This file is in the public domain, as it was distributed in |
3 ;;; 1985 or 1986 without a copyright notice. Written by RMS. | |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1
diff
changeset
|
4 |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
5 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
773
diff
changeset
|
6 ;; Keywords: emulations |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
7 |
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
8 ;;; Commentary: |
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
9 |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1
diff
changeset
|
10 ;; These were added with an eye to making possible a more CCA-compatible |
1 | 11 ;; command set; but that turned out not to be interesting. |
12 | |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
13 ;;; Code: |
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
14 |
1 | 15 (defun mark-beginning-of-buffer () |
16 "Set mark at the beginning of the buffer." | |
17 (interactive) | |
18 (push-mark (point-min))) | |
19 | |
20 (defun mark-end-of-buffer () | |
21 "Set mark at the end of the buffer." | |
22 (interactive) | |
23 (push-mark (point-max))) | |
24 | |
25 (defun upcase-char (arg) | |
26 "Uppercasify ARG chars starting from point. Point doesn't move" | |
27 (interactive "p") | |
28 (save-excursion | |
29 (upcase-region (point) (progn (forward-char arg) (point))))) | |
30 | |
31 (defun forward-to-word (arg) | |
32 "Move forward until encountering the beginning of a word. | |
33 With argument, do this that many times." | |
34 (interactive "p") | |
35 (or (re-search-forward (if (> arg 0) "\\W\\b" "\\b\\W") nil t arg) | |
36 (goto-char (if (> arg 0) (point-max) (point-min))))) | |
37 | |
38 (defun backward-to-word (arg) | |
39 "Move backward until encountering the end of a word. | |
40 With argument, do this that many times." | |
41 (interactive "p") | |
42 (forward-to-word (- arg))) | |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1
diff
changeset
|
43 |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1
diff
changeset
|
44 ;;; unused.el ends here |