comparison lisp/indent.el @ 660:08eb386dd0f3

*** empty log message ***
author Eric S. Raymond <esr@snark.thyrsus.com>
date Sat, 30 May 1992 23:12:08 +0000
parents 2ca8cdb96a9f
children a8d94735277e
comparison
equal deleted inserted replaced
659:505130d1ddf8 660:08eb386dd0f3
1 ;; Indentation commands for Emacs 1 ;;; indent.el --- indentation commands for Emacs
2
2 ;; Copyright (C) 1985 Free Software Foundation, Inc. 3 ;; Copyright (C) 1985 Free Software Foundation, Inc.
3 4
4 ;; This file is part of GNU Emacs. 5 ;; This file is part of GNU Emacs.
5 6
6 ;; GNU Emacs is free software; you can redistribute it and/or modify 7 ;; GNU Emacs is free software; you can redistribute it and/or modify
242 243
243 (define-key global-map "\t" 'indent-for-tab-command) 244 (define-key global-map "\t" 'indent-for-tab-command)
244 (define-key esc-map "\034" 'indent-region) 245 (define-key esc-map "\034" 'indent-region)
245 (define-key ctl-x-map "\t" 'indent-rigidly) 246 (define-key ctl-x-map "\t" 'indent-rigidly)
246 (define-key esc-map "i" 'tab-to-tab-stop) 247 (define-key esc-map "i" 'tab-to-tab-stop)
248
249 ;;; indent.el ends here