unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Wrong type argument: sequencep, list-font-lock-keywords-2
@ 2004-06-25 12:31 Juanma Barranquero
  2004-06-25 12:38 ` Luc Teirlinck
  2004-06-25 21:44 ` Luc Teirlinck
  0 siblings, 2 replies; 7+ messages in thread
From: Juanma Barranquero @ 2004-06-25 12:31 UTC (permalink / raw)


What recent change can be causing this?

emacs -Q
M-x global-font-lock-mode RET

 =>

  font-lock-compile-keywords: Wrong type argument: sequencep, lisp-font-lock-keywords-2

                                                                Juanma

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

* Re: Wrong type argument: sequencep, list-font-lock-keywords-2
  2004-06-25 12:31 Wrong type argument: sequencep, list-font-lock-keywords-2 Juanma Barranquero
@ 2004-06-25 12:38 ` Luc Teirlinck
  2004-06-25 12:46   ` Juanma Barranquero
  2004-06-25 21:44 ` Luc Teirlinck
  1 sibling, 1 reply; 7+ messages in thread
From: Luc Teirlinck @ 2004-06-25 12:38 UTC (permalink / raw)
  Cc: emacs-devel

Juanma Barranquero wrote:

   What recent change can be causing this?

   emacs -Q
   M-x global-font-lock-mode RET

    =>

     font-lock-compile-keywords: Wrong type argument: sequencep, lisp-font-lock-keywords-2

You are probably not using the _very_ latest CVS (it does probably not
include Rev 1.222 to font-lock.el).  I believe that Richard fixed
this.

Sincerely,

Luc.

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

* Re: Wrong type argument: sequencep, list-font-lock-keywords-2
  2004-06-25 12:38 ` Luc Teirlinck
@ 2004-06-25 12:46   ` Juanma Barranquero
  0 siblings, 0 replies; 7+ messages in thread
From: Juanma Barranquero @ 2004-06-25 12:46 UTC (permalink / raw)
  Cc: emacs-devel


On Fri, 25 Jun 2004 07:38:20 -0500 (CDT)
Luc Teirlinck <teirllm@dms.auburn.edu> wrote:

> You are probably not using the _very_ latest CVS (it does probably not
> include Rev 1.222 to font-lock.el).

No.  At work I don't have access to CVS, so I synchronize with Miles'
Emacs arch repository, which is updated once a day or so.

> I believe that Richard fixed this.

OK, thanks.

                                                                Juanma

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

* Re: Wrong type argument: sequencep, list-font-lock-keywords-2
  2004-06-25 12:31 Wrong type argument: sequencep, list-font-lock-keywords-2 Juanma Barranquero
  2004-06-25 12:38 ` Luc Teirlinck
@ 2004-06-25 21:44 ` Luc Teirlinck
  2004-06-25 21:52   ` Luc Teirlinck
  1 sibling, 1 reply; 7+ messages in thread
From: Luc Teirlinck @ 2004-06-25 21:44 UTC (permalink / raw)
  Cc: emacs-devel

While I can no longer reproduce the font-lock bug you reported, there
is apparently another font-lock bug that is still present.

emacs-21.3.50 -q --eval "(blink-cursor-mode 0)" &

Then visit a .texi file, say lispref/abbrevs.texi.

Result (from *Messages*):

Error during redisplay: (invalid-function (\(@\)c\(omment\)?\> (1 <)))
[13 times]

Sincerely,

Luc.

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

* Re: Wrong type argument: sequencep, list-font-lock-keywords-2
  2004-06-25 21:44 ` Luc Teirlinck
@ 2004-06-25 21:52   ` Luc Teirlinck
  2004-06-27 17:41     ` Richard Stallman
  0 siblings, 1 reply; 7+ messages in thread
From: Luc Teirlinck @ 2004-06-25 21:52 UTC (permalink / raw)
  Cc: jmbarranquero, emacs-devel

>From  my previous message:

   emacs-21.3.50 -q --eval "(blink-cursor-mode 0)" &

Here I forgot to say:

M-x global-font-lock-mode

   Then visit a .texi file, say lispref/abbrevs.texi.

   Result (from *Messages*):

   Error during redisplay: (invalid-function (\(@\)c\(omment\)?\> (1 <)))
   [13 times]

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

* Re: Wrong type argument: sequencep, list-font-lock-keywords-2
  2004-06-25 21:52   ` Luc Teirlinck
@ 2004-06-27 17:41     ` Richard Stallman
  2004-06-27 18:20       ` Luc Teirlinck
  0 siblings, 1 reply; 7+ messages in thread
From: Richard Stallman @ 2004-06-27 17:41 UTC (permalink / raw)
  Cc: jmbarranquero, teirllm, emacs-devel

Does this patch fix that bug?

*** font-lock.el	24 Jun 2004 19:32:27 -0400	1.222
--- font-lock.el	27 Jun 2004 00:45:14 -0400	
***************
*** 1257,1263 ****
  					font-lock-syntactic-keywords)))
    ;; Get down to business.
    (let ((case-fold-search font-lock-keywords-case-fold-search)
! 	(keywords (cdr font-lock-syntactic-keywords))
  	keyword matcher highlights)
      (while keywords
        ;; Find an occurrence of `matcher' from `start' to `end'.
--- 1257,1263 ----
  					font-lock-syntactic-keywords)))
    ;; Get down to business.
    (let ((case-fold-search font-lock-keywords-case-fold-search)
! 	(keywords (cddr font-lock-syntactic-keywords))
  	keyword matcher highlights)
      (while keywords
        ;; Find an occurrence of `matcher' from `start' to `end'.

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

* Re: Wrong type argument: sequencep, list-font-lock-keywords-2
  2004-06-27 17:41     ` Richard Stallman
@ 2004-06-27 18:20       ` Luc Teirlinck
  0 siblings, 0 replies; 7+ messages in thread
From: Luc Teirlinck @ 2004-06-27 18:20 UTC (permalink / raw)
  Cc: jmbarranquero, emacs-devel

Richard Stallman wrote:

   Does this patch fix that bug?

   *** font-lock.el	24 Jun 2004 19:32:27 -0400	1.222
   --- font-lock.el	27 Jun 2004 00:45:14 -0400	
   ***************
   *** 1257,1263 ****
					   font-lock-syntactic-keywords)))
       ;; Get down to business.
       (let ((case-fold-search font-lock-keywords-case-fold-search)
   ! 	(keywords (cdr font-lock-syntactic-keywords))
	   keyword matcher highlights)
	 (while keywords
	   ;; Find an occurrence of `matcher' from `start' to `end'.
   --- 1257,1263 ----
					   font-lock-syntactic-keywords)))
       ;; Get down to business.
       (let ((case-fold-search font-lock-keywords-case-fold-search)
   ! 	(keywords (cddr font-lock-syntactic-keywords))
	   keyword matcher highlights)
	 (while keywords
	   ;; Find an occurrence of `matcher' from `start' to `end'.

Yes it does.

Sincerely,

Luc.

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

end of thread, other threads:[~2004-06-27 18:20 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-06-25 12:31 Wrong type argument: sequencep, list-font-lock-keywords-2 Juanma Barranquero
2004-06-25 12:38 ` Luc Teirlinck
2004-06-25 12:46   ` Juanma Barranquero
2004-06-25 21:44 ` Luc Teirlinck
2004-06-25 21:52   ` Luc Teirlinck
2004-06-27 17:41     ` Richard Stallman
2004-06-27 18:20       ` Luc Teirlinck

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).