From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: [elpa] master 9173a44 1/2: [Fix #12] Don't autodisable beacon on hl-line-mode Date: Sat, 17 Oct 2015 23:20:09 -0400 Message-ID: References: <20151017213254.5317.59042@vcs.savannah.gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1445138432 31418 80.91.229.3 (18 Oct 2015 03:20:32 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 18 Oct 2015 03:20:32 +0000 (UTC) Cc: Artur Malabarba To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Oct 18 05:20:23 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZneWD-000084-8k for ged-emacs-devel@m.gmane.org; Sun, 18 Oct 2015 05:20:21 +0200 Original-Received: from localhost ([::1]:60509 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZneWC-00073g-8o for ged-emacs-devel@m.gmane.org; Sat, 17 Oct 2015 23:20:20 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:58196) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZneW9-00073X-46 for emacs-devel@gnu.org; Sat, 17 Oct 2015 23:20:17 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZneW4-0001H5-7m for emacs-devel@gnu.org; Sat, 17 Oct 2015 23:20:17 -0400 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.181]:47618) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZneW4-0001GV-3m for emacs-devel@gnu.org; Sat, 17 Oct 2015 23:20:12 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A0A1FgA731xV/0qOCkxcgxCEAoVVwwsEAgKBPDwRAQEBAQEBAYEKQQWDXQEBBFYjEAs0EhQYDYhjzyMBAQEBBgEBAQEeizqFBQcWhBcBBLM/gUUjgjuBWSKCeAEBAQ X-IPAS-Result: A0A1FgA731xV/0qOCkxcgxCEAoVVwwsEAgKBPDwRAQEBAQEBAYEKQQWDXQEBBFYjEAs0EhQYDYhjzyMBAQEBBgEBAQEeizqFBQcWhBcBBLM/gUUjgjuBWSKCeAEBAQ X-IronPort-AV: E=Sophos;i="5.13,465,1427774400"; d="scan'208";a="169965226" Original-Received: from 76-10-142-74.dsl.teksavvy.com (HELO fmsmemgm.homelinux.net) ([76.10.142.74]) by ironport2-out.teksavvy.com with ESMTP/TLS/DHE-RSA-AES256-SHA; 17 Oct 2015 23:20:09 -0400 Original-Received: by fmsmemgm.homelinux.net (Postfix, from userid 20848) id 30BFDAE6B2; Sat, 17 Oct 2015 23:20:09 -0400 (EDT) In-Reply-To: (Artur Malabarba's message of "Sat, 17 Oct 2015 21:32:54 +0000") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 206.248.154.181 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:191909 Archived-At: > + (add-hook 'beacon-dont-blink-predicates > + (lambda () (bound-and-true-p hl-line-mode)))" > :type 'hook) > -(add-hook 'beacon-dont-blink-predicates (lambda () (bound-and-true-p hl-line-mode))) > (add-hook 'beacon-dont-blink-predicates #'window-minibuffer-p) This add-hook will interfere with defcustom's handling of the variable (i.e. Customize will rightly complain that "the variable was modified outside of Customize"). Stefan