;;; iter.el --- insert consecutive numers into buffer ;; Copyright (C) 2004 Free Software Foundation, Inc. ;; Author: Manfred Wassmann ;; Keywords: convenience ;; This file 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 2, or (at your option) ;; any later version. ;; This file 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; see the file COPYING. If not, write to ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ;; Boston, MA 02111-1307, USA. ;;; Commentary: ;; ;;; Code: (defvar iter 0) (defun iter8n (&optional pat) "iterate" (interactive "M") (setq iter (+ iter 1)) (if pat (progn (search-forward pat))) (insert (number-to-string iter))) (defun iter8n0 (&optional start) "reset ieration counter" (interactive "p") (setq iter start)) (fset 'nextchr [?\C-s ?{ ?\C-m ?\M-x ?i ?t ?e ?r ?8 ?n return]) (provide 'iter) ;;; iter.el ends here