annotate lisp/unused.el @ 18291:130a48e6cc13

(ffap-soft-value): Make this a function again; the macro version does intern-soft too early. Deleted XEmacs-specific code. (ffap-string-at-point-mode-alist): added "=" and "&" to the url syntax, as suggested by SJE. (ffap-read-file-or-url): fixed the HIST argument to completing-read (only visible in XEmacs?), as reported by Christoph Wedler <wedler@fmi.uni-passau.de>. (ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs, a first attempt at kpathsea emulation. Also convert "" to "." in path lists, for XEmacs. Suggestions from SJE. Added mouse-track support (but no binding), as suggested by MDB. Moved Emacs mouse bindings from "down-mouse" events to ordinary mouse events. (ffap-alist): added ffap-fortran-mode, as requested by MDB. Rewrote and merged XEmacs support, eliminating file ffap-xe.el. Modified ffap-other-frame to work in dedicated frames, fixing a bug reported by JENS. (ffap-menu-rescan): avoid modifying the buffer. Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>: (ffap-fixup-url): avoid autoloading through url-normalize-url. (ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg to `abbreviate-file-name'. (ffap-file-at-point): suppress errors from `ffap-alist'. (ffap-url-at-point): modified regexp to accept mail hostnames ending with a digit. Fixes bug report of SJE. (ffap-url-at-point): use higher level function (w3-view-this-url t) suggested by wmperry, instead of w3-zone-at/w3-zone-data or widget-at/widget-get. (ffap-url-at-point): modified to work with w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which uses the 'widget package rather than the old w3-zone-at. Bug was reported by JENS. Adopted comments and doc strings to Emacs coding conventions. Reorganized. Retired v18 support. (ffap-bindings): Offers a default installation. (ffap-string-at-point): Modified arguments. (ffap-gnus-hook): Updated for Gnus 5. (ffap-tex-init): Delayed initialization of `ffap-tex-path'. (ffap-dired): New entry in `ffap-alist'. (ffap-menu-rescan): May fontify the choices in buffer. (ffap-read-file-or-url): `PC-completion-as-file-name-predicate' used if available, to work with complete.el.
author Karl Heuer <kwzh@gnu.org>
date Wed, 18 Jun 1997 04:24:37 +0000
parents 7e4999005da1
children 253f761ad37b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
7e4999005da1 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 840
diff changeset
2 ;;; This file is in the public domain, as it was distributed in
7e4999005da1 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 840
diff changeset
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
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
11 ;; command set; but that turned out not to be interesting.
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
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
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15 (defun mark-beginning-of-buffer ()
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
16 "Set mark at the beginning of the buffer."
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
17 (interactive)
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
18 (push-mark (point-min)))
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
19
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
20 (defun mark-end-of-buffer ()
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
21 "Set mark at the end of the buffer."
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
22 (interactive)
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
23 (push-mark (point-max)))
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
24
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
25 (defun upcase-char (arg)
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
26 "Uppercasify ARG chars starting from point. Point doesn't move"
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
27 (interactive "p")
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
28 (save-excursion
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
29 (upcase-region (point) (progn (forward-char arg) (point)))))
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
30
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
31 (defun forward-to-word (arg)
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
32 "Move forward until encountering the beginning of a word.
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
33 With argument, do this that many times."
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
34 (interactive "p")
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
35 (or (re-search-forward (if (> arg 0) "\\W\\b" "\\b\\W") nil t arg)
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
36 (goto-char (if (> arg 0) (point-max) (point-min)))))
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
37
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
38 (defun backward-to-word (arg)
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
39 "Move backward until encountering the end of a word.
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
40 With argument, do this that many times."
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
41 (interactive "p")
08ab8bcdd648 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
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