X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/ecae6af979abcbb5b45c33ee05ceb297678ec9a0..73b0cd50031a714347109169ceb8bacae338612a:/lisp/misc.el diff --git a/lisp/misc.el b/lisp/misc.el index ad7de36e8e..8a571f4514 100644 --- a/lisp/misc.el +++ b/lisp/misc.el @@ -1,10 +1,10 @@ ;;; misc.el --- some nonstandard basic editing commands for Emacs -;; Copyright (C) 1989, 2001, 2002, 2003, 2004, 2005, -;; 2006, 2007, 2008 Free Software Foundation, Inc. +;; Copyright (C) 1989, 2001-2011 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: convenience +;; Package: emacs ;; This file is part of GNU Emacs. @@ -53,7 +53,7 @@ The characters copied are inserted in the buffer before point." (setq string (concat string (buffer-substring (point) - (min (save-excursion (end-of-line) (point)) + (min (line-end-position) (+ n (point))))))) (insert string))) @@ -106,7 +106,29 @@ With argument, do this that many times." (interactive "p") (forward-to-word (- arg))) +;;;###autoload +(defun butterfly () + "Use butterflies to flip the desired bit on the drive platter. +Open hands and let the delicate wings flap once. The disturbance +ripples outward, changing the flow of the eddy currents in the +upper atmosphere. These cause momentary pockets of higher-pressure +air to form, which act as lenses that deflect incoming cosmic rays, +focusing them to strike the drive platter and flip the desired bit. +You can type `M-x butterfly C-M-c' to run it. This is a permuted +variation of `C-x M-c M-butterfly' from url `http://xkcd.com/378/'." + (interactive) + (if (yes-or-no-p "Do you really want to unleash the powers of the butterfly? ") + (progn + (switch-to-buffer (get-buffer-create "*butterfly*")) + (erase-buffer) + (sit-for 0) + (animate-string "Amazing physics going on..." + (/ (window-height) 2) (- (/ (window-width) 2) 12)) + (sit-for (* 5 (/ (abs (random)) (float most-positive-fixnum)))) + (message "Successfully flipped one bit!")) + (message "Well, then go to xkcd.com!") + (browse-url "http://xkcd.com/378/"))) + (provide 'misc) -;; arch-tag: 908f7884-c19e-4388-920c-9cfa425e449b ;;; misc.el ends here