Changeset 3356
- Timestamp:
- 2004年07月16日 23時20分14秒 (4 years ago)
- Files:
-
- branches/2.1/lisp/ChangeLog.Meadow (modified) (1 diff)
- branches/2.1/lisp/emacs-lisp/bytecomp.el (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.1/lisp/ChangeLog.Meadow
r3348 r3356 1 2004-07-16 Masayuki Fujii <boochang@m4.kcn.ne.jp> 2 3 * emacs-lisp/bytecomp.el (byte-recompile-directory): Sync up with 4 Emacs CVS HEAD. 5 1 6 2004-07-15 MIYOSHI Masanori <miyoshi@meadowy.org> 2 7 branches/2.1/lisp/emacs-lisp/bytecomp.el
r3212 r3356 1295 1295 (dolist (file files) 1296 1296 (setq source (expand-file-name file directory)) 1297 (if (and (not (member file '("." ".." "RCS" "CVS"))) 1297 (if (and (not (member file '("RCS" "CVS"))) 1298 (not (eq ?\. (aref file 0))) 1298 1299 (file-directory-p source) 1299 1300 (not (file-symlink-p source))) 1300 ;; This file is a subdirectory. Handle them differently.1301 ;; This file is a subdirectory. Handle them differently. 1301 1302 (when (or (null arg) 1302 1303 (eq 0 arg) … … 1304 1305 (setq directories 1305 1306 (nconc directories (list source)))) 1306 ;; It is an ordinary file. Decide whether to compile it.1307 ;; It is an ordinary file. Decide whether to compile it. 1307 1308 (if (and (string-match emacs-lisp-file-regexp source) 1308 1309 (file-readable-p source)
