comparison lisp/emulation/pc-select.el @ 14169:83f275dcd93a

Update FSF's address.
author Erik Naggum <erik@naggum.no>
date Sun, 14 Jan 1996 07:34:30 +0000
parents 187735b53d52
children d74d8edde304
comparison
equal deleted inserted replaced
14168:3b925cc52931 14169:83f275dcd93a
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of 18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details. 20 ;; GNU General Public License for more details.
21 21
22 ;; You should have received a copy of the GNU General Public License 22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
25 26
26 ;;; Commentary: 27 ;;; Commentary:
27 ;; 28
28 ;; This package emulates the mark, copy, cut and paste look-and-feel of motif 29 ;; This package emulates the mark, copy, cut and paste look-and-feel of motif
29 ;; programs (which is the same as the MAC gui and (sorry for that) MS-Windows). 30 ;; programs (which is the same as the MAC gui and (sorry for that) MS-Windows).
30 ;; It modifies the keybindings of the cursor keys and the next, prior, 31 ;; It modifies the keybindings of the cursor keys and the next, prior,
31 ;; home and end keys. They will modify mark-active. 32 ;; home and end keys. They will modify mark-active.
32 ;; You can still get the old behaviour of cursor moving with the 33 ;; You can still get the old behaviour of cursor moving with the
66 ;; It was not possible to bind them to C-v, C-x and C-c for obvious 67 ;; It was not possible to bind them to C-v, C-x and C-c for obvious
67 ;; emacs reasons. 68 ;; emacs reasons.
68 ;; They will be bound according to the "old" behaviour to S-delete (cut), 69 ;; They will be bound according to the "old" behaviour to S-delete (cut),
69 ;; S-insert (paste) and C-insert (copy). These keys do the same in many 70 ;; S-insert (paste) and C-insert (copy). These keys do the same in many
70 ;; other programs. 71 ;; other programs.
71 ;; 72
72 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 73 ;;; Code:
73 ;;;;
74 ;;;; INSTALLATION:
75 ;;;; o Put this file called "pc-select.el" into a path where emacs
76 ;;;; looks for lisp libraries. Byte-compile if you want to.
77 ;;;; o Put the command '(require 'pc-select) or
78 ;;;; '(load "pc-select")' into your ~/.emacs. After that line
79 ;;;; put the command '(pc-selection-mode)' to activate the mode.
80 ;;;;
81 ;;;; Please note that I am _not_ a lisp expert, I apologise for
82 ;;;; all hacks which look ugly to an experienced lisp programmer.
83 ;;;; Please report all errors and improvement. Thank you.
84 ;;;;
85 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
86
87 ;;;; Code:
88 74
89 ;;;; 75 ;;;;
90 ;; misc 76 ;; misc
91 ;;;; 77 ;;;;
92 78