unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#21481: 24.5; show-paren-mode does not work with --color=no
@ 2015-09-14 19:31 Simon Gerraty
  2015-09-15  7:24 ` Eli Zaretskii
  0 siblings, 1 reply; 7+ messages in thread
From: Simon Gerraty @ 2015-09-14 19:31 UTC (permalink / raw)
  To: 21481; +Cc: sjg

Hi,

I've noticed in recent versions of Emacs that paren matching does not
work.

Turns out it *does* work, but I cannot see the result, because emacs is
started with --color=no (sorry but I cannot stand the color stuff)

If I start emacs without that paren matching works - using cyan
to highlight open paren.

That would suggest that the face used for show-paren-match is wrong -
ignoring color=no.

I cannot confirm that since I cannot seem to get any of the functions in
faces.el to run, even after explicitly loading it.
Which is odd.

I've seen this on multiple platforms, the common factor being emacs
version > 22

In GNU Emacs 24.5.1 (x86_64--netbsd)
 of 2015-07-10 on amd64-nb61
Configured using:
 `configure --srcdir=/work/editors/emacs24-nox11/work/emacs-24.5
 --localstatedir=/var --without-dbus --without-m17n-flt --without-otf
 --without-rsvg --without-x --without-xft --without-gif --without-jpeg
 --without-png --without-tiff --without-xpm --prefix=/usr/pkg
 --build=x86_64--netbsd --host=x86_64--netbsd --infodir=/usr/pkg/info
 --mandir=/usr/pkg/man 'CFLAGS=-O2 -I/usr/include' 'CPPFLAGS=-DTERMINFO
 -I/usr/include' 'LDFLAGS=-L/usr/lib -Wl,-R/usr/lib -Wl,-R/usr/pkg/lib''

Important settings:
  value of $LC_ALL: C
  value of $LANG: C
  locale-coding-system: nil





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

* bug#21481: 24.5; show-paren-mode does not work with --color=no
  2015-09-14 19:31 bug#21481: 24.5; show-paren-mode does not work with --color=no Simon Gerraty
@ 2015-09-15  7:24 ` Eli Zaretskii
  2015-09-15 14:54   ` Simon J. Gerraty
  0 siblings, 1 reply; 7+ messages in thread
From: Eli Zaretskii @ 2015-09-15  7:24 UTC (permalink / raw)
  To: Simon Gerraty; +Cc: 21481-done

> From: Simon Gerraty <sjg@juniper.net>
> Date: Mon, 14 Sep 2015 12:31:59 -0700
> 
> I've noticed in recent versions of Emacs that paren matching does not
> work.
> 
> Turns out it *does* work, but I cannot see the result, because emacs is
> started with --color=no (sorry but I cannot stand the color stuff)
> 
> If I start emacs without that paren matching works - using cyan
> to highlight open paren.
> 
> That would suggest that the face used for show-paren-match is wrong -
> ignoring color=no.

Thanks, I modified the definition of show-paren-match face to use
underline on color-less displays.





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

* bug#21481: 24.5; show-paren-mode does not work with --color=no
  2015-09-15  7:24 ` Eli Zaretskii
@ 2015-09-15 14:54   ` Simon J. Gerraty
  2015-09-15 14:56     ` Dmitry Gutov
  0 siblings, 1 reply; 7+ messages in thread
From: Simon J. Gerraty @ 2015-09-15 14:54 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 21481-done, sjg

Eli Zaretskii <eliz@gnu.org> wrote:
> > That would suggest that the face used for show-paren-match is wrong -
> > ignoring color=no.
> 
> Thanks, I modified the definition of show-paren-match face to use
> underline on color-less displays.

Cool - is there a patch I can grab?

Thanks
--sjg





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

* bug#21481: 24.5; show-paren-mode does not work with --color=no
  2015-09-15 14:54   ` Simon J. Gerraty
@ 2015-09-15 14:56     ` Dmitry Gutov
  2015-09-15 16:16       ` Simon J. Gerraty
  0 siblings, 1 reply; 7+ messages in thread
From: Dmitry Gutov @ 2015-09-15 14:56 UTC (permalink / raw)
  To: Simon J. Gerraty, Eli Zaretskii; +Cc: 21481-done

On 09/15/2015 05:54 PM, Simon J. Gerraty wrote:

> Cool - is there a patch I can grab?

That would be 
http://git.savannah.gnu.org/cgit/emacs.git/commit/?id=a1cbf94359cbe0e39ff49e4f639f7dd15d17fbcf






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

* bug#21481: 24.5; show-paren-mode does not work with --color=no
  2015-09-15 14:56     ` Dmitry Gutov
@ 2015-09-15 16:16       ` Simon J. Gerraty
  2015-09-15 16:22         ` Dmitry Gutov
  0 siblings, 1 reply; 7+ messages in thread
From: Simon J. Gerraty @ 2015-09-15 16:16 UTC (permalink / raw)
  To: Dmitry Gutov; +Cc: 21481-done, sjg

Dmitry Gutov <dgutov@yandex.ru> wrote:

> On 09/15/2015 05:54 PM, Simon J. Gerraty wrote:
> 
> > Cool - is there a patch I can grab?
> 
> That would be
> http://git.savannah.gnu.org/cgit/emacs.git/commit/?id=a1cbf94359cbe0e39ff49e4f639f7dd15d17fbcf

Thanks... is there something else needed?

Applying that, removing old .elc and restarting emacs, seems to have
no effect.

I ended up customizing show-paren-match via list-faces-display,
it showed background was grey.

So I've solved my specific issue but not sure the patch helped.

Thanks
--sjg





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

* bug#21481: 24.5; show-paren-mode does not work with --color=no
  2015-09-15 16:16       ` Simon J. Gerraty
@ 2015-09-15 16:22         ` Dmitry Gutov
  2015-09-15 16:35           ` Simon J. Gerraty
  0 siblings, 1 reply; 7+ messages in thread
From: Dmitry Gutov @ 2015-09-15 16:22 UTC (permalink / raw)
  To: Simon J. Gerraty; +Cc: 21481-done

On 09/15/2015 07:16 PM, Simon J. Gerraty wrote:

> Applying that, removing old .elc and restarting emacs, seems to have
> no effect.

You need to recompile Emacs as well, faces.el is among the preloaded files.






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

* bug#21481: 24.5; show-paren-mode does not work with --color=no
  2015-09-15 16:22         ` Dmitry Gutov
@ 2015-09-15 16:35           ` Simon J. Gerraty
  0 siblings, 0 replies; 7+ messages in thread
From: Simon J. Gerraty @ 2015-09-15 16:35 UTC (permalink / raw)
  To: Dmitry Gutov; +Cc: 21481-done, sjg

Dmitry Gutov <dgutov@yandex.ru> wrote:

> On 09/15/2015 07:16 PM, Simon J. Gerraty wrote:
> 
> > Applying that, removing old .elc and restarting emacs, seems to have
> > no effect.
> 
> You need to recompile Emacs as well, faces.el is among the preloaded files.

I *knew* you were going to say that ;-)

Thanks for confirmation.





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

end of thread, other threads:[~2015-09-15 16:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-14 19:31 bug#21481: 24.5; show-paren-mode does not work with --color=no Simon Gerraty
2015-09-15  7:24 ` Eli Zaretskii
2015-09-15 14:54   ` Simon J. Gerraty
2015-09-15 14:56     ` Dmitry Gutov
2015-09-15 16:16       ` Simon J. Gerraty
2015-09-15 16:22         ` Dmitry Gutov
2015-09-15 16:35           ` Simon J. Gerraty

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).