[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/buffer.c,v
From: |
Kim F. Storm |
Subject: |
[Emacs-diffs] Changes to emacs/src/buffer.c,v |
Date: |
Fri, 25 Aug 2006 23:33:44 +0000 |
CVSROOT: /cvsroot/emacs
Module name: emacs
Changes by: Kim F. Storm <kfstorm> 06/08/25 23:33:44
Index: buffer.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/buffer.c,v
retrieving revision 1.509
retrieving revision 1.510
diff -u -b -r1.509 -r1.510
--- buffer.c 25 Aug 2006 21:10:26 -0000 1.509
+++ buffer.c 25 Aug 2006 23:33:44 -0000 1.510
@@ -2345,11 +2345,10 @@
{
/* Represent all the above changes by a special undo entry. */
extern Lisp_Object Qapply;
- Lisp_Object args[3];
- args[0] = Qapply;
- args[1] = intern ("set-buffer-multibyte");
- args[2] = NILP (flag) ? Qt : Qnil;
- current_buffer->undo_list = Fcons (Flist (3, args), old_undo);
+ current_buffer->undo_list = Fcons (list3 (Qapply,
+ intern ("set-buffer-multibyte"),
+ NILP (flag) ? Qt : Qnil),
+ old_undo);
}
UNGCPRO;
- [Emacs-diffs] Changes to emacs/src/buffer.c,v, Chong Yidong, 2006/08/06
- [Emacs-diffs] Changes to emacs/src/buffer.c,v, Kim F. Storm, 2006/08/22
- [Emacs-diffs] Changes to emacs/src/buffer.c,v, Nick Roberts, 2006/08/24
- [Emacs-diffs] Changes to emacs/src/buffer.c,v, Richard M. Stallman, 2006/08/25
- [Emacs-diffs] Changes to emacs/src/buffer.c,v,
Kim F. Storm <=