emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: update to zoom-frame.el for emacs-24?


From: Juanma Barranquero
Subject: Re: update to zoom-frame.el for emacs-24?
Date: Tue, 20 Dec 2011 15:52:05 +0100

On Tue, Dec 20, 2011 at 15:17, Neal Becker <address@hidden> wrote:

> But on 24.0.92, I see:
> enlarge-font: Symbol's function definition is void: frame-update-faces
>
> Suggestions?

frame-update-faces has been removed, and was previously aliased to
`ignore' since Emacs 21.1.

So just skip calling it if it is not defined, or define an alias yourself:

(unless (fboundp 'frame-update-faces)
  (defalias 'frame-update-faces 'ignore))

    Juanma



reply via email to

[Prev in Thread] Current Thread [Next in Thread]