diff options
| author | John Paul Wallington | 2002-11-20 12:58:37 +0000 |
|---|---|---|
| committer | John Paul Wallington | 2002-11-20 12:58:37 +0000 |
| commit | cb21744eb592bad08cb4b5e6357f267506ad9722 (patch) | |
| tree | 4a5e624a8fc3ead8292dc90d3553c760a1e0dc0a | |
| parent | c595cc5fbda9c9fade56760110d614946524810a (diff) | |
| download | emacs-cb21744eb592bad08cb4b5e6357f267506ad9722.tar.gz emacs-cb21744eb592bad08cb4b5e6357f267506ad9722.zip | |
(symbol-file): Remove unused variable `functions'.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/subr.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e3bf6c11387..e10f6451474 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-11-20 John Paul Wallington <jpw@shootybangbang.com> | ||
| 2 | |||
| 3 | * subr.el (symbol-file): Remove unused variable `functions'. | ||
| 4 | |||
| 1 | 2002-11-20 Markus Rost <rost@math.ohio-state.edu> | 5 | 2002-11-20 Markus Rost <rost@math.ohio-state.edu> |
| 2 | 6 | ||
| 3 | * Makefile.in (setwins_almost): Renamed from finder_setwins. | 7 | * Makefile.in (setwins_almost): Renamed from finder_setwins. |
diff --git a/lisp/subr.el b/lisp/subr.el index 17ca52c6292..10e48e7a405 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -923,7 +923,7 @@ It can also be nil, if the definition is not associated with any file." | |||
| 923 | (eq 'autoload (car-safe (symbol-function function)))) | 923 | (eq 'autoload (car-safe (symbol-function function)))) |
| 924 | (nth 1 (symbol-function function)) | 924 | (nth 1 (symbol-function function)) |
| 925 | (let ((files load-history) | 925 | (let ((files load-history) |
| 926 | file functions) | 926 | file) |
| 927 | (while files | 927 | (while files |
| 928 | (if (memq function (cdr (car files))) | 928 | (if (memq function (cdr (car files))) |
| 929 | (setq file (car (car files)) files nil)) | 929 | (setq file (car (car files)) files nil)) |