X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/002c4306f09aa9a4a81903325c1fa072a0b25ebe..d1d6801eb4badab97416d0b6294e1920d0f90c3e:/lisp/emulation/pc-mode.el diff --git a/lisp/emulation/pc-mode.el b/lisp/emulation/pc-mode.el index 3265fd3ba3..37e6cc1aa4 100644 --- a/lisp/emulation/pc-mode.el +++ b/lisp/emulation/pc-mode.el @@ -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 . + +;;; 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