emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/emacs-lisp/cl-compat.el


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/cl-compat.el
Date: Mon, 15 Nov 2004 23:10:34 -0500

Index: emacs/lisp/emacs-lisp/cl-compat.el
diff -c emacs/lisp/emacs-lisp/cl-compat.el:1.8 
emacs/lisp/emacs-lisp/cl-compat.el:1.9
*** emacs/lisp/emacs-lisp/cl-compat.el:1.8      Mon Sep  1 15:45:20 2003
--- emacs/lisp/emacs-lisp/cl-compat.el  Tue Nov 16 04:04:50 2004
***************
*** 1,6 ****
  ;;; cl-compat.el --- Common Lisp extensions for GNU Emacs Lisp (compatibility)
  
! ;; Copyright (C) 1993 Free Software Foundation, Inc.
  
  ;; Author: Dave Gillespie <address@hidden>
  ;; Version: 2.02
--- 1,6 ----
  ;;; cl-compat.el --- Common Lisp extensions for GNU Emacs Lisp (compatibility)
  
! ;; Copyright (C) 1993, 2004  Free Software Foundation, Inc.
  
  ;; Author: Dave Gillespie <address@hidden>
  ;; Version: 2.02
***************
*** 139,145 ****
  ;; Internal routines.
  
  (defun pair-with-newsyms (oldforms)
!   (let ((newsyms (mapcar (function (lambda (x) (gensym))) oldforms)))
      (Values (mapcar* 'list newsyms oldforms) newsyms)))
  
  (defun zip-lists (evens odds)
--- 139,145 ----
  ;; Internal routines.
  
  (defun pair-with-newsyms (oldforms)
!   (let ((newsyms (mapcar (lambda (x) (make-symbol "--cl-var--")) oldforms)))
      (Values (mapcar* 'list newsyms oldforms) newsyms)))
  
  (defun zip-lists (evens odds)
***************
*** 185,189 ****
  
  (provide 'cl-compat)
  
! ;;; arch-tag: 9996bb4f-aaf5-4592-b436-bf64759a3163
  ;;; cl-compat.el ends here
--- 185,189 ----
  
  (provide 'cl-compat)
  
! ;; arch-tag: 9996bb4f-aaf5-4592-b436-bf64759a3163
  ;;; cl-compat.el ends here




reply via email to

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