X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/5df4f04cd32af723742c81095b38ae83b3c2b462..1259009aa17da6dc038afff96963f6d9bbd3b8e1:/lisp/macros.el diff --git a/lisp/macros.el b/lisp/macros.el index 5c62cdb59e..2f48aaa982 100644 --- a/lisp/macros.el +++ b/lisp/macros.el @@ -1,10 +1,11 @@ ;;; macros.el --- non-primitive commands for keyboard macros -;; Copyright (C) 1985, 1986, 1987, 1992, 1994, 1995, 2001, 2002, 2003, -;; 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. +;; Copyright (C) 1985-1987, 1992, 1994-1995, 2001-2012 +;; Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: abbrev +;; Package: emacs ;; This file is part of GNU Emacs. @@ -126,7 +127,7 @@ use this command, and then save the file." (delete-region (point) (1+ (point))) (insert "\\M-\\C-?")))))) (if (vectorp definition) - (let ((len (length definition)) (i 0) char mods) + (let ((len (length definition)) (i 0) char) (while (< i len) (insert (if (zerop i) ?\[ ?\s)) (setq char (aref definition i) @@ -282,5 +283,4 @@ and then select the region of un-tablified names and use (provide 'macros) -;; arch-tag: 346ed1a5-1220-4bc8-b533-961ee704361f ;;; macros.el ends here