]> code.delx.au - gnu-emacs/blobdiff - lisp/emulation/pc-mode.el
Implement mouse highlight for bidi-reordered lines.
[gnu-emacs] / lisp / emulation / pc-mode.el
index 3265fd3ba354959a7530c0734815811010609590..37e6cc1aa4b827ab37d5939424b44de087d4ccad 100644 (file)
@@ -1,3 +1,31 @@
+;;; pc-mode.el --- emulate certain key bindings used on PCs
+
+;; Copyright (C) 1995, 2001, 2002, 2003, 2004, 2005,
+;;   2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+
+;; Maintainer: FSF
+;; Keywords: emulations
+
+;; This file is part of GNU Emacs.
+
+;; GNU Emacs is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; GNU Emacs is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;;; Code:
+
+;;;###autoload
 (defun pc-bindings-mode ()
   "Set up certain key bindings for PC compatibility.
 The keys affected are:
@@ -23,3 +51,7 @@ C-Escape does list-buffers."
   (global-set-key [C-home] 'beginning-of-buffer)
   (global-set-key [C-end] 'end-of-buffer))
 
+(provide 'pc-mode)
+
+;; arch-tag: df007c05-f885-4cd0-8c1e-487d0f8dd9c9
+;;; pc-mode.el ends here