From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Josef Urban Newsgroups: gmane.emacs.devel Subject: invisible text in compilation-goto-locus Date: Tue, 16 Sep 2003 16:29:41 +0200 (CEST) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: sea.gmane.org 1063716914 1155 80.91.224.253 (16 Sep 2003 12:55:14 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 16 Sep 2003 12:55:14 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Tue Sep 16 14:55:12 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19zFMO-0004s6-00 for ; Tue, 16 Sep 2003 14:55:12 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 19zFPU-0003ok-00 for ; Tue, 16 Sep 2003 14:58:24 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.22) id 19zFLE-0001Pv-Pi for emacs-devel@quimby.gnus.org; Tue, 16 Sep 2003 08:54:00 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.22) id 19zFKS-0001LA-Jq for emacs-devel@gnu.org; Tue, 16 Sep 2003 08:53:12 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.22) id 19zFKQ-0001KY-DH for emacs-devel@gnu.org; Tue, 16 Sep 2003 08:53:10 -0400 Original-Received: from [199.232.41.8] (helo=mx20.gnu.org) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.22) id 19zFKP-0001KT-K9 for emacs-devel@gnu.org; Tue, 16 Sep 2003 08:53:09 -0400 Original-Received: from [195.113.17.207] (helo=ktilinux.ms.mff.cuni.cz) by mx20.gnu.org with esmtp (Exim 4.22) id 19zFGV-0005cj-PL for emacs-devel@gnu.org; Tue, 16 Sep 2003 08:49:07 -0400 Original-Received: from localhost (urban@localhost) by ktilinux.ms.mff.cuni.cz (8.11.6/linuxconf) with ESMTP id h8GETfl11932 for ; Tue, 16 Sep 2003 16:29:41 +0200 Original-To: X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:16424 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:16424 Hi, The function compilation-goto-locus used in compile.el shows invisibile text only if it was created by the hideshow mode: ;; If hideshow got in the way of ;; seeing the right place, open permanently. (mapcar (function (lambda (ov) (when (eq 'hs (overlay-get ov 'invisible)) (delete-overlay ov) (goto-char (cdr next-error))))) (overlays-at (point))) Should not there be a more general property (like isearch-open-invisible) or even a variable (like buffer-invisibility-spec) to allow customization of its behavior? Thanks, Josef Urban