Show
Ignore:
Timestamp:
09/30/06 09:12:06 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lisp

    • Property svn:ignore changed from
      *.elc
      MANIFEST
      Makefile
      Makefile.unix
      makefile
      elc.tar.gz
      cus-load.el
      finder-inf.el
      subdirs.el
      loaddefs.el
      to
      *.elc
      MANIFEST
      Makefile
      Makefile.unix
      makefile
      elc.tar.gz
      cus-load.el
      finder-inf.el
      subdirs.el
      loaddefs.el
      pre-mh-loaddefs.el-CMD
  • trunk/lisp/ediff-util.el

    r4058 r4169  
    42824282    (cdr result))) 
    42834283 
     4284(defun ediff-add-to-history (history-var newelt) 
     4285  (if (fboundp 'add-to-history) 
     4286      (add-to-history history-var newelt) 
     4287    (set history-var (cons newelt (symbol-value history-var))))) 
     4288 
    42844289(if (fboundp 'copy-sequence) 
    42854290    (defalias 'ediff-copy-list 'copy-sequence)