all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Tassilo Horn <tsdh@gnu.org>
To: Magnus Henoch <magnus.henoch@gmail.com>
Cc: 14181@debbugs.gnu.org, control@debbugs.gnu.org, 14184@debbugs.gnu.org
Subject: bug#14181: bug#14184: 24.3.50; customize-face says "read-face-name: Wrong type argument: sequencep, 97"
Date: Thu, 11 Apr 2013 14:32:19 +0200	[thread overview]
Message-ID: <87ppy1b63w.fsf@thinkpad.tsdh.de> (raw)
In-Reply-To: <m28v4pgvn3.fsf@sns-2144.sns.bskyb.corp> (Magnus Henoch's message of "Thu, 11 Apr 2013 12:21:52 +0100")

merge 14184 14181

> A recent change to read-face-name means that typing M-x customize-face
> gives the error "Wrong type argument: sequencep, 97".

Already reported as bug#14181, but without the fix, so thanks.  (Not
sure if that merging thing above is actually the right syntax...)

> This change seems to fix it:
>
> diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
> index d19e2de..46c2009 100644
> --- a/lisp/cus-edit.el
> +++ b/lisp/cus-edit.el
> @@ -1319,8 +1319,8 @@ If OTHER-WINDOW is non-nil, display in another window.
>  
>  Interactively, when point is on text which has a face specified,
>  suggest to customize that face, if it's customizable."
> -  (interactive (list (read-face-name "Customize face" "all faces" t)))
> -  (if (member face '(nil ""))
> +  (interactive (list (read-face-name "Customize face" '("all faces") t)))
> +  (if (member face '(nil "" (all\ faces)))
>        (setq face (face-list)))
>    (if (and (listp face) (null (cdr face)))
>        (setq face (car face)))

Bye,
Tassilo





      reply	other threads:[~2013-04-11 12:32 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-11 11:21 bug#14184: 24.3.50; customize-face says "read-face-name: Wrong type argument: sequencep, 97" Magnus Henoch
2013-04-11 12:32 ` Tassilo Horn [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87ppy1b63w.fsf@thinkpad.tsdh.de \
    --to=tsdh@gnu.org \
    --cc=14181@debbugs.gnu.org \
    --cc=14184@debbugs.gnu.org \
    --cc=control@debbugs.gnu.org \
    --cc=magnus.henoch@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.