all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: storm@cua.dk (Kim F. Storm)
Cc: emacs-devel@gnu.org
Subject: Re: Changes to emacs/src/ChangeLog
Date: Mon, 08 May 2006 00:06:43 +0200	[thread overview]
Message-ID: <m3r735qyks.fsf@kfs-l.imdomain.dk> (raw)
In-Reply-To: <E1FcGel-0008T1-6O@savannah.gnu.org> (YAMAMOTO Mitsuharu's message of "Sat, 06 May 2006 06:52:47 +0000")

YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> writes:

> +2006-05-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
> +
> +	* image.c (Qduration) [MAC_OS]: New variable.
> +	(syms_of_image) [MAC_OS]: Intern and staticpro it.
> +	[MAC_OS] (gif_load): Save image extension data in img->data.lisp_val.

The format you have chosen for the GIF extension data on MAC_OS is
completely different from the "raw" extension data which is returned for
other systems.  This makes it harder to use the data at the Lisp level.

Since it is trivial to emulate the "raw" format for the duration extension,
I would prefer if you do this, instead of using a different format.  E.g.:

unsigned char tem[4] = { 0, (duration)&0xff, ((duration)>>8)&0xff, 0 };

result = list4 (Qcount,
       		make_number (images),
       		make_number (0xF9),
       		make_unibyte_string (tem, 4));
        

-- 
Kim F. Storm  http://www.cua.dk

       reply	other threads:[~2006-05-07 22:06 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <E1FcGel-0008T1-6O@savannah.gnu.org>
2006-05-07 22:06 ` Kim F. Storm [this message]
2006-05-08  1:28   ` Changes to emacs/src/ChangeLog YAMAMOTO Mitsuharu
2006-05-08  8:42     ` Kim F. Storm

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=m3r735qyks.fsf@kfs-l.imdomain.dk \
    --to=storm@cua.dk \
    --cc=emacs-devel@gnu.org \
    /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.