GNU bug report logs - #19294
25.0.50; fringe-bitmap-p returns always non-nil

Previous Next

Package: emacs;

Reported by: Ari Roponen <ari.roponen <at> gmail.com>

Date: Sun, 7 Dec 2014 10:45:02 UTC

Severity: normal

Found in version 25.0.50

Done: Ari Roponen <ari.roponen <at> gmail.com>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Ari Roponen <ari.roponen <at> gmail.com>
Subject: bug#19294: closed (Re: bug#19294: 25.0.50; fringe-bitmap-p
 returns always non-nil)
Date: Sun, 14 Dec 2014 11:08:02 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#19294: 25.0.50; fringe-bitmap-p returns always non-nil

which was filed against the emacs package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 19294 <at> debbugs.gnu.org.

-- 
19294: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=19294
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Ari Roponen <ari.roponen <at> gmail.com>
To: 19294-done <at> debbugs.gnu.org
Subject: Re: bug#19294: 25.0.50; fringe-bitmap-p returns always non-nil
Date: Sun, 14 Dec 2014 13:07:27 +0200
Fixed by:

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

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

-- 
Ari Roponen

[Message part 3 (message/rfc822, inline)]
From: Ari Roponen <ari.roponen <at> gmail.com>
To: bug-gnu-emacs <at> gnu.org
Subject: 25.0.50; fringe-bitmap-p returns always non-nil
Date: Sun, 07 Dec 2014 12:44:21 +0200
(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 <at> gmail.com>
+
+	* fringe.el (fringe-bitmap-p): Fix return value.
+
 2014-12-06  Ulf Jasper  <ulf.jasper <at> 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



This bug report was last modified 10 years and 212 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.