]> git.eshelyaron.com Git - emacs.git/commitdiff
(butterfly): New command.
authorJuri Linkov <juri@jurta.org>
Sun, 28 Dec 2008 23:48:21 +0000 (23:48 +0000)
committerJuri Linkov <juri@jurta.org>
Sun, 28 Dec 2008 23:48:21 +0000 (23:48 +0000)
lisp/misc.el

index ad7de36e8ef463cc92a3e453f4cc1309c1c91e35..6dafd2a5e4b0fe726384a90e5d036e36c2633ad1 100644 (file)
@@ -106,6 +106,20 @@ With argument, do this that many times."
   (interactive "p")
   (forward-to-word (- arg)))
 
+;;;###autoload
+(defun butterfly ()
+  "This function is designed to be used only be the most
+proficient hackers on earth. If equipped with a butterfly key,
+it should be bound to C-x M-c M-butterfly (for further
+information please refer to http://xkcd.com/378/)."
+  (interactive)
+  (if (yes-or-no-p "Do you really want to unleash the powers of the butterfly? ")
+      (progn
+       (message "Amazing physics going on...")
+       (sit-for (* 5 (/ (abs (random)) (float most-positive-fixnum))))
+       (message "Successfully flipped one bit!"))
+    (message "Well, then go to www.xkcd.com!")))
+
 (provide 'misc)
 
 ;; arch-tag: 908f7884-c19e-4388-920c-9cfa425e449b