File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 11; ;; fireplace.el --- A cozy fireplace for emacs -*- lexical-binding : t ; -*-
22
33; ; Copyright (C) 2015 Johan Sivertsen
4- ; ;; Version: 0.2
4+ ; ;; Version: 1.0
55; ;; Author: Johan Sivertsen <[email protected] >66; ;; URL: https://github.com/johanvts/emacs-fireplace
77; ;; Released: December 2015
8585
8686
8787(defun draw-flame-stripe (x y width )
88- " Draw fire stripes ."
88+ " Draw flame stripe ."
8989 (fireplace--gotoxy x y)
9090 (let* ((actual-width (min width (1+ (- fireplace--bkgd-width x))))
9191 (hot-core (/ actual-width 2 )))
9999 'face `(:background ," dark orange" ))))))
100100
101101(defun fireplace--smoke (x height )
102- " Draw fire smoke."
102+ " Draw one random smoke."
103103 (fireplace--gotoxy (if (>(random 3 ) 1 )
104104 (+ x (random (/ fireplace--bkgd-width 5 )))
105105 (max 0 (- x (random (/ fireplace--bkgd-width 5 )))))
109109 'face `(:foreground , " slate grey" ))))
110110
111111(defun fireplace--flame (middle h )
112- " Draw fire flames ."
112+ " Draw a flame ."
113113 (setq cursor-type nil )
114114 (let* ((width h)
115115 (lower (truncate (* 0.2 h)))
153153; ; Commands
154154;;;### autoload
155155(defun fireplace (arg )
156- " Turn on the fire like it's winter ."
156+ " Light the fire."
157157 (interactive " P" )
158158 (with-current-buffer (get-buffer-create fireplace-buffer-name)
159159 (setq cursor-type nil )
You can’t perform that action at this time.
0 commit comments