Fix filling circle/ellipse in Artist Mode (Bug#19763)

lisp/textmodes/artist.el (artist-ellipse-compute-fill-info): Use
 mapcar, not mapc, to create the other half of fill-info.
This commit is contained in:
Eli Zaretskii 2015-02-04 17:31:37 +02:00
parent 4779a4bbcc
commit d825f66db8
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2015-02-04 Eli Zaretskii <eliz@gnu.org>
* textmodes/artist.el (artist-ellipse-compute-fill-info): Use
mapcar, not mapc, to create the other half of fill-info.
(Bug#19763)
2015-02-04 Nicolas Petton <nicolas@petton.fr>
* emacs-lisp/authors.el (authors-ignored-files)

View file

@ -3372,7 +3372,7 @@ The POINT-LIST is expected to cover the first quadrant."
;; Create the other half by mirroring the first half.
(setq both-halves
(append first-half
(mapc
(mapcar
(lambda (i)
(artist-new-fill-item (artist-fill-item-get-x i)
(- (artist-fill-item-get-y i))