Skip to content

Commit adf29fa

Browse files
committed
Update descriptions and bump to stable version 1.0
1 parent 22cdef3 commit adf29fa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

fireplace.el

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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
@@ -85,7 +85,7 @@
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)))
@@ -99,7 +99,7 @@
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)))))
@@ -109,7 +109,7 @@
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)))
@@ -153,7 +153,7 @@
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)

0 commit comments

Comments
 (0)