Fix -- user list buffer not updating when parts are hidden.
[riece] / lisp / riece-signal.el
index e972580..9d8204c 100644 (file)
@@ -1,4 +1,4 @@
-;;; riece-signal.el --- "signal-slot" abstraction for routing display events
+;;; riece-signal.el --- "signal-slot" abstraction for routing display events -*- lexical-binding: t -*-
 ;; Copyright (C) 1998-2003 Daiki Ueno
 
 ;; Author: Daiki Ueno <ueno@unixuser.org>
@@ -19,8 +19,8 @@
 
 ;; You should have received a copy of the GNU General Public License
 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
-;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-;; Boston, MA 02111-1307, USA.
+;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+;; Boston, MA 02110-1301, USA.
 
 ;;; Commentary:
 
@@ -105,9 +105,10 @@ This function is for internal use only."
            slots (symbol-value symbol))
       (while slots
        (if (or (null (riece-slot-filter (car slots)))
-               (riece-ignore-errors (format "signal filter for \"%S\""
-                                            signal-name)
-                 (funcall (riece-slot-filter (car slots)) signal)))
+               (riece-funcall-ignore-errors (format "signal filter for \"%S\""
+                                                    signal-name)
+                                            (riece-slot-filter (car slots))
+                                            signal))
            (riece-funcall-ignore-errors (format "slot function for \"%S\""
                                                 signal-name)
                                         (riece-slot-function (car slots))