comparison lisp/play/animate.el @ 38626:6b570d0e1cf3

Add Keywords and Maintainer. Remove a reference to a removed function.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 01 Aug 2001 10:18:26 +0000
parents 7f4573a73075
children dc644b0090f2
comparison
equal deleted inserted replaced
38625:0bfdfd449f4a 38626:6b570d0e1cf3
1 ;;; animate.el --- make text dance 1 ;;; animate.el --- make text dance
2 2
3 ;; Copyright (C) 2001 Free Software Foundation, Inc. 3 ;; Copyright (C) 2001 Free Software Foundation, Inc.
4
5 ;; Maintainer: Richard Stallman <rms@gnu.org>
6 ;; Keywords: games
4 7
5 ;; This file is part of GNU Emacs. 8 ;; This file is part of GNU Emacs.
6 9
7 ;; GNU Emacs is free software; you can redistribute it and/or modify 10 ;; GNU Emacs is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by 11 ;; it under the terms of the GNU General Public License as published by
22 ;;; Commentary: 25 ;;; Commentary:
23 26
24 ;; (animate-string STRING VPOS &optional HPOS) 27 ;; (animate-string STRING VPOS &optional HPOS)
25 ;; makes the string STRING appear starting at VPOS, HPOS 28 ;; makes the string STRING appear starting at VPOS, HPOS
26 ;; by having each letter swoop into place from random starting position. 29 ;; by having each letter swoop into place from random starting position.
27
28 ;; animate-birthday-present was the first application of this program.
29 30
30 ;;; Code: 31 ;;; Code:
31 32
32 ;;; STRING is the string to be displayed, 33 ;;; STRING is the string to be displayed,
33 ;;; and DEST-X, DEST-Y say where on the screen 34 ;;; and DEST-X, DEST-Y say where on the screen
128 ;; This is so that the undo command, used afterwards, 129 ;; This is so that the undo command, used afterwards,
129 ;; will undo the "animate" calls one by one. 130 ;; will undo the "animate" calls one by one.
130 (undo-boundary))) 131 (undo-boundary)))
131 132
132 ;;; animate.el ends here 133 ;;; animate.el ends here
133