all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#19294: 25.0.50; fringe-bitmap-p returns always non-nil
@ 2014-12-07 10:44 Ari Roponen
       [not found] ` <handler.19294.B.141794909529648.ack@debbugs.gnu.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Ari Roponen @ 2014-12-07 10:44 UTC (permalink / raw)
  To: 19294


(fringe-bitmap-p 'left-arrow)
=> (get left-arrow 'fringe)

The following patch fixes the return value.

In GNU Emacs 25.0.50.13 (x86_64-unknown-linux-gnu, GTK+ Version 3.14.5)
 of 2014-12-07 on arirop
Repository revision: 2b53560c75b117452c047a7ac0d00f06266b8f8d
Windowing system distributor `Fedora Project', version 11.0.11601000
System Description:	Fedora release 21 (Twenty One)


diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f695e1c..65d5f62 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2014-12-07  Ari Roponen  <ari.roponen@gmail.com>
+
+	* fringe.el (fringe-bitmap-p): Fix return value.
+
 2014-12-06  Ulf Jasper  <ulf.jasper@web.de>
 
 	* net/newst-treeview.el (newsticker--treeview-list-add-item)
diff --git a/lisp/fringe.el b/lisp/fringe.el
index 97a0393..51d6543 100644
--- a/lisp/fringe.el
+++ b/lisp/fringe.el
@@ -85,7 +85,7 @@
 
 (defun fringe-bitmap-p (symbol)
   "Return non-nil if SYMBOL is a fringe bitmap."
-  `(get ,symbol 'fringe))
+  (get symbol 'fringe))
 
 
 ;; Control presence of fringes





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#19294: 25.0.50; fringe-bitmap-p returns always non-nil
       [not found] ` <handler.19294.B.141794909529648.ack@debbugs.gnu.org>
@ 2014-12-14 11:07   ` Ari Roponen
  2014-12-14 13:27     ` Dmitry Gutov
  0 siblings, 1 reply; 3+ messages in thread
From: Ari Roponen @ 2014-12-14 11:07 UTC (permalink / raw)
  To: 19294-done


Fixed by:

commit 9f28cb59dc77213e1496f4ded40017739d734114
Author: Dmitry Gutov <dgutov@yandex.ru>
Date:   Sun Dec 14 12:51:52 2014 +0200

    * lisp/fringe.el (fringe-bitmap-p): Fix 2014-12-05 breakage.

-- 
Ari Roponen





^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#19294: 25.0.50; fringe-bitmap-p returns always non-nil
  2014-12-14 11:07   ` Ari Roponen
@ 2014-12-14 13:27     ` Dmitry Gutov
  0 siblings, 0 replies; 3+ messages in thread
From: Dmitry Gutov @ 2014-12-14 13:27 UTC (permalink / raw)
  To: 19294; +Cc: ari.roponen

Ari Roponen <ari.roponen@gmail.com> writes:

> Fixed by:
>
> commit 9f28cb59dc77213e1496f4ded40017739d734114
> Author: Dmitry Gutov <dgutov@yandex.ru>
> Date:   Sun Dec 14 12:51:52 2014 +0200

Right. And sorry: I missed this bug report, along with the patch.





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-12-14 13:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-07 10:44 bug#19294: 25.0.50; fringe-bitmap-p returns always non-nil Ari Roponen
     [not found] ` <handler.19294.B.141794909529648.ack@debbugs.gnu.org>
2014-12-14 11:07   ` Ari Roponen
2014-12-14 13:27     ` Dmitry Gutov

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.