Mercurial > emacs
annotate lisp/loadhist.el @ 79745:5daf374c5116
Add 2008 to copyright years.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Mon, 07 Jan 2008 08:29:40 +0000 |
parents | 73661ddc7ac7 |
children | 107ccd98fa12 |
rev | line source |
---|---|
2543 | 1 ;;; loadhist.el --- lisp functions for working with feature groups |
14169 | 2 |
74442 | 3 ;; Copyright (C) 1995, 1998, 2000, 2001, 2002, 2003, 2004, |
79721 | 4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
2543 | 5 |
6 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com> | |
29090
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
7 ;; Maintainer: FSF |
2543 | 8 ;; Keywords: internal |
9 | |
11289 | 10 ;; This file is part of GNU Emacs. |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
78236
9355f9b7bbff
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
76969
diff
changeset
|
14 ;; the Free Software Foundation; either version 3, or (at your option) |
11289 | 15 ;; any later version. |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64091 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
11289 | 26 |
2543 | 27 ;;; Commentary: |
28 | |
29 ;; These functions exploit the load-history system variable. | |
22459
bc88a299d2fc
(read-feature): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
16173
diff
changeset
|
30 ;; Entry points include `unload-feature', `symbol-file', and |
bc88a299d2fc
(read-feature): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
16173
diff
changeset
|
31 ;; `feature-file', documented in the Emacs Lisp manual. |
2543 | 32 |
33 ;;; Code: | |
34 | |
69935
3fc0524ae318
(unload-feature): A bit of sanity check of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69165
diff
changeset
|
35 (eval-when-compile (require 'cl)) |
3fc0524ae318
(unload-feature): A bit of sanity check of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69165
diff
changeset
|
36 |
2543 | 37 (defun feature-symbols (feature) |
47017
0ba62d75345e
(unload-feature): Distinguish functions from variables in load-history.
Richard M. Stallman <rms@gnu.org>
parents:
33094
diff
changeset
|
38 "Return the file and list of definitions associated with FEATURE. |
0ba62d75345e
(unload-feature): Distinguish functions from variables in load-history.
Richard M. Stallman <rms@gnu.org>
parents:
33094
diff
changeset
|
39 The value is actually the element of `load-history' |
0ba62d75345e
(unload-feature): Distinguish functions from variables in load-history.
Richard M. Stallman <rms@gnu.org>
parents:
33094
diff
changeset
|
40 for the file that did (provide FEATURE)." |
2543 | 41 (catch 'foundit |
29090
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
42 (mapc (lambda (x) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
43 (if (member (cons 'provide feature) (cdr x)) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
44 (throw 'foundit x))) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
45 load-history) |
2543 | 46 nil)) |
47 | |
48 (defun feature-file (feature) | |
49 "Return the file name from which a given FEATURE was loaded. | |
50 Actually, return the load argument, if any; this is sometimes the name of a | |
29090
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
51 Lisp file without an extension. If the feature came from an `eval-buffer' on |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
52 a buffer with no associated file, or an `eval-region', return nil." |
2543 | 53 (if (not (featurep feature)) |
29090
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
54 (error "%S is not a currently loaded feature" feature) |
2543 | 55 (car (feature-symbols feature)))) |
56 | |
59318
55722dde9e0a
(file-loadhist-lookup): New function.
Richard M. Stallman <rms@gnu.org>
parents:
54000
diff
changeset
|
57 (defun file-loadhist-lookup (file) |
66285
dc2f1300400b
(file-loadhist-lookup): Call locate-library
Richard M. Stallman <rms@gnu.org>
parents:
64762
diff
changeset
|
58 "Return the `load-history' element for FILE. |
dc2f1300400b
(file-loadhist-lookup): Call locate-library
Richard M. Stallman <rms@gnu.org>
parents:
64762
diff
changeset
|
59 FILE can be a file name, or a library name. |
dc2f1300400b
(file-loadhist-lookup): Call locate-library
Richard M. Stallman <rms@gnu.org>
parents:
64762
diff
changeset
|
60 A library name is equivalent to the file name that `load-library' would load." |
59318
55722dde9e0a
(file-loadhist-lookup): New function.
Richard M. Stallman <rms@gnu.org>
parents:
54000
diff
changeset
|
61 ;; First look for FILE as given. |
55722dde9e0a
(file-loadhist-lookup): New function.
Richard M. Stallman <rms@gnu.org>
parents:
54000
diff
changeset
|
62 (let ((symbols (assoc file load-history))) |
55722dde9e0a
(file-loadhist-lookup): New function.
Richard M. Stallman <rms@gnu.org>
parents:
54000
diff
changeset
|
63 ;; Try converting a library name to an absolute file name. |
55722dde9e0a
(file-loadhist-lookup): New function.
Richard M. Stallman <rms@gnu.org>
parents:
54000
diff
changeset
|
64 (and (null symbols) |
69165
cba71dc12c14
(file-loadhist-lookup): Use `get-load-suffixes' instead of `load-suffixes'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68651
diff
changeset
|
65 (let ((absname |
cba71dc12c14
(file-loadhist-lookup): Use `get-load-suffixes' instead of `load-suffixes'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68651
diff
changeset
|
66 (locate-file file load-path (get-load-suffixes)))) |
66285
dc2f1300400b
(file-loadhist-lookup): Call locate-library
Richard M. Stallman <rms@gnu.org>
parents:
64762
diff
changeset
|
67 (and absname (not (equal absname file)) |
dc2f1300400b
(file-loadhist-lookup): Call locate-library
Richard M. Stallman <rms@gnu.org>
parents:
64762
diff
changeset
|
68 (setq symbols (cdr (assoc absname load-history)))))) |
59318
55722dde9e0a
(file-loadhist-lookup): New function.
Richard M. Stallman <rms@gnu.org>
parents:
54000
diff
changeset
|
69 symbols)) |
55722dde9e0a
(file-loadhist-lookup): New function.
Richard M. Stallman <rms@gnu.org>
parents:
54000
diff
changeset
|
70 |
2543 | 71 (defun file-provides (file) |
66285
dc2f1300400b
(file-loadhist-lookup): Call locate-library
Richard M. Stallman <rms@gnu.org>
parents:
64762
diff
changeset
|
72 "Return the list of features provided by FILE as it was loaded. |
dc2f1300400b
(file-loadhist-lookup): Call locate-library
Richard M. Stallman <rms@gnu.org>
parents:
64762
diff
changeset
|
73 FILE can be a file name, or a library name. |
dc2f1300400b
(file-loadhist-lookup): Call locate-library
Richard M. Stallman <rms@gnu.org>
parents:
64762
diff
changeset
|
74 A library name is equivalent to the file name that `load-library' would load." |
59318
55722dde9e0a
(file-loadhist-lookup): New function.
Richard M. Stallman <rms@gnu.org>
parents:
54000
diff
changeset
|
75 (let ((symbols (file-loadhist-lookup file)) |
29090
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
76 provides) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
77 (mapc (lambda (x) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
78 (if (and (consp x) (eq (car x) 'provide)) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
79 (setq provides (cons (cdr x) provides)))) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
80 symbols) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
81 provides)) |
2543 | 82 |
83 (defun file-requires (file) | |
66285
dc2f1300400b
(file-loadhist-lookup): Call locate-library
Richard M. Stallman <rms@gnu.org>
parents:
64762
diff
changeset
|
84 "Return the list of features required by FILE as it was loaded. |
dc2f1300400b
(file-loadhist-lookup): Call locate-library
Richard M. Stallman <rms@gnu.org>
parents:
64762
diff
changeset
|
85 FILE can be a file name, or a library name. |
dc2f1300400b
(file-loadhist-lookup): Call locate-library
Richard M. Stallman <rms@gnu.org>
parents:
64762
diff
changeset
|
86 A library name is equivalent to the file name that `load-library' would load." |
59318
55722dde9e0a
(file-loadhist-lookup): New function.
Richard M. Stallman <rms@gnu.org>
parents:
54000
diff
changeset
|
87 (let ((symbols (file-loadhist-lookup file)) |
29090
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
88 requires) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
89 (mapc (lambda (x) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
90 (if (and (consp x) (eq (car x) 'require)) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
91 (setq requires (cons (cdr x) requires)))) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
92 symbols) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
93 requires)) |
2543 | 94 |
29090
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
95 (defsubst file-set-intersect (p q) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
96 "Return the set intersection of two lists." |
2543 | 97 (let ((ret nil)) |
29090
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
98 (dolist (x p ret) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
99 (if (memq x q) (setq ret (cons x ret)))) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
100 ret)) |
2543 | 101 |
102 (defun file-dependents (file) | |
10498
8fb25f247533
(unload-feature): Don't care if FILE is a dependency of itself.
Richard M. Stallman <rms@gnu.org>
parents:
8108
diff
changeset
|
103 "Return the list of loaded libraries that depend on FILE. |
66285
dc2f1300400b
(file-loadhist-lookup): Call locate-library
Richard M. Stallman <rms@gnu.org>
parents:
64762
diff
changeset
|
104 This can include FILE itself. |
dc2f1300400b
(file-loadhist-lookup): Call locate-library
Richard M. Stallman <rms@gnu.org>
parents:
64762
diff
changeset
|
105 FILE can be a file name, or a library name. |
dc2f1300400b
(file-loadhist-lookup): Call locate-library
Richard M. Stallman <rms@gnu.org>
parents:
64762
diff
changeset
|
106 A library name is equivalent to the file name that `load-library' would load." |
29090
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
107 (let ((provides (file-provides file)) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
108 (dependents nil)) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
109 (dolist (x load-history dependents) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
110 (if (file-set-intersect provides (file-requires (car x))) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
111 (setq dependents (cons (car x) dependents)))) |
86d462e378ce
(feature-symbols, file-provides, file-requires): Use mapc.
Dave Love <fx@gnu.org>
parents:
23852
diff
changeset
|
112 dependents)) |
2543 | 113 |
76968
a188649f301c
(read-feature): Reimplement. New optional arg LOADED-P.
Kim F. Storm <storm@cua.dk>
parents:
75797
diff
changeset
|
114 (defun read-feature (prompt &optional loaded-p) |
a188649f301c
(read-feature): Reimplement. New optional arg LOADED-P.
Kim F. Storm <storm@cua.dk>
parents:
75797
diff
changeset
|
115 "Read feature name from the minibuffer, prompting with string PROMPT. |
a188649f301c
(read-feature): Reimplement. New optional arg LOADED-P.
Kim F. Storm <storm@cua.dk>
parents:
75797
diff
changeset
|
116 If optional second arg LOADED-P is non-nil, the feature must be loaded |
a188649f301c
(read-feature): Reimplement. New optional arg LOADED-P.
Kim F. Storm <storm@cua.dk>
parents:
75797
diff
changeset
|
117 from a file." |
a188649f301c
(read-feature): Reimplement. New optional arg LOADED-P.
Kim F. Storm <storm@cua.dk>
parents:
75797
diff
changeset
|
118 (intern |
a188649f301c
(read-feature): Reimplement. New optional arg LOADED-P.
Kim F. Storm <storm@cua.dk>
parents:
75797
diff
changeset
|
119 (completing-read prompt |
a188649f301c
(read-feature): Reimplement. New optional arg LOADED-P.
Kim F. Storm <storm@cua.dk>
parents:
75797
diff
changeset
|
120 (cons nil features) |
a188649f301c
(read-feature): Reimplement. New optional arg LOADED-P.
Kim F. Storm <storm@cua.dk>
parents:
75797
diff
changeset
|
121 (and loaded-p |
a188649f301c
(read-feature): Reimplement. New optional arg LOADED-P.
Kim F. Storm <storm@cua.dk>
parents:
75797
diff
changeset
|
122 #'(lambda (f) |
a188649f301c
(read-feature): Reimplement. New optional arg LOADED-P.
Kim F. Storm <storm@cua.dk>
parents:
75797
diff
changeset
|
123 (and f ; ignore nil |
a188649f301c
(read-feature): Reimplement. New optional arg LOADED-P.
Kim F. Storm <storm@cua.dk>
parents:
75797
diff
changeset
|
124 (feature-file f)))) |
a188649f301c
(read-feature): Reimplement. New optional arg LOADED-P.
Kim F. Storm <storm@cua.dk>
parents:
75797
diff
changeset
|
125 loaded-p))) |
16173
9ba176963a26
(read-feature): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
126 |
52755
6c7cae7ce71a
(unload-feature-special-hooks):
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
127 (defvaralias 'loadhist-hook-functions 'unload-feature-special-hooks) |
6c7cae7ce71a
(unload-feature-special-hooks):
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
128 (defvar unload-feature-special-hooks |
79140
c52ee056d7b0
(unload-feature-special-hooks): Update list of special hooks.
Juanma Barranquero <lekktu@gmail.com>
parents:
79030
diff
changeset
|
129 '(after-change-functions after-insert-file-functions |
c52ee056d7b0
(unload-feature-special-hooks): Update list of special hooks.
Juanma Barranquero <lekktu@gmail.com>
parents:
79030
diff
changeset
|
130 after-make-frame-functions auto-fill-function before-change-functions |
c52ee056d7b0
(unload-feature-special-hooks): Update list of special hooks.
Juanma Barranquero <lekktu@gmail.com>
parents:
79030
diff
changeset
|
131 blink-paren-function buffer-access-fontify-functions command-line-functions |
79242
70c9d3c324c3
(unload-feature-special-hooks): Add `delete-frame-functions'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79192
diff
changeset
|
132 comment-indent-function compilation-finish-functions delete-frame-functions |
79140
c52ee056d7b0
(unload-feature-special-hooks): Update list of special hooks.
Juanma Barranquero <lekktu@gmail.com>
parents:
79030
diff
changeset
|
133 disabled-command-function find-file-not-found-functions |
c52ee056d7b0
(unload-feature-special-hooks): Update list of special hooks.
Juanma Barranquero <lekktu@gmail.com>
parents:
79030
diff
changeset
|
134 font-lock-beginning-of-syntax-function font-lock-fontify-buffer-function |
c52ee056d7b0
(unload-feature-special-hooks): Update list of special hooks.
Juanma Barranquero <lekktu@gmail.com>
parents:
79030
diff
changeset
|
135 font-lock-fontify-region-function font-lock-mark-block-function |
c52ee056d7b0
(unload-feature-special-hooks): Update list of special hooks.
Juanma Barranquero <lekktu@gmail.com>
parents:
79030
diff
changeset
|
136 font-lock-syntactic-face-function font-lock-unfontify-buffer-function |
c52ee056d7b0
(unload-feature-special-hooks): Update list of special hooks.
Juanma Barranquero <lekktu@gmail.com>
parents:
79030
diff
changeset
|
137 font-lock-unfontify-region-function kill-buffer-query-functions |
c52ee056d7b0
(unload-feature-special-hooks): Update list of special hooks.
Juanma Barranquero <lekktu@gmail.com>
parents:
79030
diff
changeset
|
138 kill-emacs-query-functions lisp-indent-function mouse-position-function |
47017
0ba62d75345e
(unload-feature): Distinguish functions from variables in load-history.
Richard M. Stallman <rms@gnu.org>
parents:
33094
diff
changeset
|
139 redisplay-end-trigger-functions temp-buffer-show-function |
0ba62d75345e
(unload-feature): Distinguish functions from variables in load-history.
Richard M. Stallman <rms@gnu.org>
parents:
33094
diff
changeset
|
140 window-scroll-functions window-size-change-functions |
79140
c52ee056d7b0
(unload-feature-special-hooks): Update list of special hooks.
Juanma Barranquero <lekktu@gmail.com>
parents:
79030
diff
changeset
|
141 write-contents-functions write-file-functions |
47017
0ba62d75345e
(unload-feature): Distinguish functions from variables in load-history.
Richard M. Stallman <rms@gnu.org>
parents:
33094
diff
changeset
|
142 write-region-annotate-functions) |
33094
51c874361c84
(unload-feature): Call elp-restore-function,
Dave Love <fx@gnu.org>
parents:
31674
diff
changeset
|
143 "A list of special hooks from Info node `(elisp)Standard Hooks'. |
22459
bc88a299d2fc
(read-feature): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
16173
diff
changeset
|
144 |
79192
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
145 These are symbols with hooklike values whose names don't end in |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
146 `-hook' or `-hooks', from which `unload-feature' should try to remove |
22459
bc88a299d2fc
(read-feature): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
16173
diff
changeset
|
147 pertinent symbols.") |
bc88a299d2fc
(read-feature): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
16173
diff
changeset
|
148 |
79192
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
149 (defvar unload-function-defs-list nil |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
150 "List of defintions in the Lisp library being unloaded. |
54000
8d106818ca97
(unload-hook-features-list): New defvar.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53998
diff
changeset
|
151 |
79192
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
152 This is meant to be used by `FEATURE-unload-function'; see the |
54000
8d106818ca97
(unload-hook-features-list): New defvar.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53998
diff
changeset
|
153 documentation of `unload-feature' for details.") |
79145
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
154 (define-obsolete-variable-alias 'unload-hook-features-list |
79192
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
155 'unload-function-defs-list "22.2") |
54000
8d106818ca97
(unload-hook-features-list): New defvar.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53998
diff
changeset
|
156 |
2543 | 157 ;;;###autoload |
158 (defun unload-feature (feature &optional force) | |
79192
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
159 "Unload the library that provided FEATURE. |
29241
a243b2d9c015
(unload-feature): Fix interactive spec [from
Dave Love <fx@gnu.org>
parents:
29090
diff
changeset
|
160 If the feature is required by any other loaded code, and prefix arg FORCE |
53998
2e361a295c26
(unload-feature): Doc fix. Rename flist to unload-hook-features-list.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53599
diff
changeset
|
161 is nil, raise an error. |
2e361a295c26
(unload-feature): Doc fix. Rename flist to unload-hook-features-list.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53599
diff
changeset
|
162 |
79192
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
163 Standard unloading activities include restoring old autoloads for |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
164 functions defined by the library, undoing any additions that the |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
165 library has made to hook variables or to `auto-mode-alist', undoing |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
166 ELP profiling of functions in that library, unproviding any features |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
167 provided by the library, and canceling timers held in variables |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
168 defined by the library. |
79030
e8d941fbbe78
(unload-feature): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
78236
diff
changeset
|
169 |
79192
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
170 If a function `FEATURE-unload-function' is defined, this function |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
171 calls it with no arguments, before doing anything else. That function |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
172 can do whatever is appropriate to undo the loading of the library. If |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
173 `FEATURE-unload-function' returns non-nil, that suppresses the |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
174 standard unloading of the library. Otherwise the standard unloading |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
175 proceeds. |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
176 |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
177 `FEATURE-unload-function' has access to the package's list of |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
178 definitions in the variable `unload-function-defs-list' and could |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
179 remove symbols from it in the event that the package has done |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
180 something strange, such as redefining an Emacs function." |
76968
a188649f301c
(read-feature): Reimplement. New optional arg LOADED-P.
Kim F. Storm <storm@cua.dk>
parents:
75797
diff
changeset
|
181 (interactive |
a188649f301c
(read-feature): Reimplement. New optional arg LOADED-P.
Kim F. Storm <storm@cua.dk>
parents:
75797
diff
changeset
|
182 (list |
76969
8237a66e9288
(unload-feature): Add line break.
Kim F. Storm <storm@cua.dk>
parents:
76968
diff
changeset
|
183 (read-feature "Unload feature: " t) |
8237a66e9288
(unload-feature): Add line break.
Kim F. Storm <storm@cua.dk>
parents:
76968
diff
changeset
|
184 current-prefix-arg)) |
61664
79b58e05730b
(unload-feature): Update for new format of load-history. Simplify the code.
Lute Kamstra <lute@gnu.org>
parents:
61599
diff
changeset
|
185 (unless (featurep feature) |
79b58e05730b
(unload-feature): Update for new format of load-history. Simplify the code.
Lute Kamstra <lute@gnu.org>
parents:
61599
diff
changeset
|
186 (error "%s is not a currently loaded feature" (symbol-name feature))) |
79b58e05730b
(unload-feature): Update for new format of load-history. Simplify the code.
Lute Kamstra <lute@gnu.org>
parents:
61599
diff
changeset
|
187 (unless force |
79b58e05730b
(unload-feature): Update for new format of load-history. Simplify the code.
Lute Kamstra <lute@gnu.org>
parents:
61599
diff
changeset
|
188 (let* ((file (feature-file feature)) |
79b58e05730b
(unload-feature): Update for new format of load-history. Simplify the code.
Lute Kamstra <lute@gnu.org>
parents:
61599
diff
changeset
|
189 (dependents (delete file (copy-sequence (file-dependents file))))) |
79b58e05730b
(unload-feature): Update for new format of load-history. Simplify the code.
Lute Kamstra <lute@gnu.org>
parents:
61599
diff
changeset
|
190 (when dependents |
79b58e05730b
(unload-feature): Update for new format of load-history. Simplify the code.
Lute Kamstra <lute@gnu.org>
parents:
61599
diff
changeset
|
191 (error "Loaded libraries %s depend on %s" |
79b58e05730b
(unload-feature): Update for new format of load-history. Simplify the code.
Lute Kamstra <lute@gnu.org>
parents:
61599
diff
changeset
|
192 (prin1-to-string dependents) file)))) |
79192
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
193 (let* ((unload-function-defs-list (feature-symbols feature)) |
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
194 (file (pop unload-function-defs-list)) |
75797
1c398694f7b2
(unload-feature): Handle (t . SYMBOL) entries in load history.
Richard M. Stallman <rms@gnu.org>
parents:
75687
diff
changeset
|
195 ;; If non-nil, this is a symbol for which we should |
1c398694f7b2
(unload-feature): Handle (t . SYMBOL) entries in load history.
Richard M. Stallman <rms@gnu.org>
parents:
75687
diff
changeset
|
196 ;; restore a previous autoload if possible. |
1c398694f7b2
(unload-feature): Handle (t . SYMBOL) entries in load history.
Richard M. Stallman <rms@gnu.org>
parents:
75687
diff
changeset
|
197 restore-autoload |
79145
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
198 (name (symbol-name feature)) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
199 (unload-hook (intern-soft (concat name "-unload-hook"))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
200 (unload-func (intern-soft (concat name "-unload-function")))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
201 ;; If FEATURE-unload-function is defined and returns non-nil, |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
202 ;; don't try to do anything more; otherwise proceed normally. |
79270
6dd30931fca5
(unload-feature): Remove redundant check.
Juanma Barranquero <lekktu@gmail.com>
parents:
79254
diff
changeset
|
203 (unless (and (fboundp unload-func) |
79145
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
204 (funcall unload-func)) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
205 ;; Try to avoid losing badly when hooks installed in critical |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
206 ;; places go away. (Some packages install things on |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
207 ;; `kill-buffer-hook', `activate-menubar-hook' and the like.) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
208 (if unload-hook |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
209 ;; First off, provide a clean way for package FOO to arrange |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
210 ;; this by adding hooks on the variable `FOO-unload-hook'. |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
211 ;; This is obsolete; FEATURE-unload-function should be used now. |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
212 (run-hooks unload-hook) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
213 ;; Otherwise, do our best. Look through the obarray for symbols |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
214 ;; which seem to be hook variables or special hook functions and |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
215 ;; remove anything from them which matches the feature-symbols |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
216 ;; about to get zapped. Obviously this won't get anonymous |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
217 ;; functions which the package might just have installed, and |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
218 ;; there might be other important state, but this tactic |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
219 ;; normally works. |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
220 (mapatoms |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
221 (lambda (x) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
222 (when (and (boundp x) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
223 (or (and (consp (symbol-value x)) ; Random hooks. |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
224 (string-match "-hooks?\\'" (symbol-name x))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
225 (memq x unload-feature-special-hooks))) ; Known abnormal hooks etc. |
79192
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
226 (dolist (y unload-function-defs-list) |
79145
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
227 (when (and (eq (car-safe y) 'defun) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
228 (not (get (cdr y) 'autoload))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
229 (remove-hook x (cdr y))))))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
230 ;; Remove any feature-symbols from auto-mode-alist as well. |
79192
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
231 (dolist (y unload-function-defs-list) |
79145
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
232 (when (and (eq (car-safe y) 'defun) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
233 (not (get (cdr y) 'autoload))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
234 (setq auto-mode-alist |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
235 (rassq-delete-all (cdr y) auto-mode-alist))))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
236 (when (fboundp 'elp-restore-function) ; remove ELP stuff first |
79192
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
237 (dolist (elt unload-function-defs-list) |
79145
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
238 (when (symbolp elt) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
239 (elp-restore-function elt)))) |
75797
1c398694f7b2
(unload-feature): Handle (t . SYMBOL) entries in load history.
Richard M. Stallman <rms@gnu.org>
parents:
75687
diff
changeset
|
240 |
79192
8f2e292b71d0
(unload-function-defs-list): Renamed from unload-function-features-list.
Richard M. Stallman <rms@gnu.org>
parents:
79145
diff
changeset
|
241 (dolist (x unload-function-defs-list) |
79145
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
242 (if (consp x) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
243 (case (car x) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
244 ;; Remove any feature names that this file provided. |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
245 (provide |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
246 (setq features (delq (cdr x) features))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
247 ((defun autoload) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
248 (let ((fun (cdr x))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
249 (when (fboundp fun) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
250 (when (fboundp 'ad-unadvise) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
251 (ad-unadvise fun)) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
252 (let ((aload (get fun 'autoload))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
253 (if (and aload (eq fun restore-autoload)) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
254 (fset fun (cons 'autoload aload)) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
255 (fmakunbound fun)))))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
256 ;; (t . SYMBOL) comes before (defun . SYMBOL) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
257 ;; and says we should restore SYMBOL's autoload |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
258 ;; when we undefine it. |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
259 ((t) (setq restore-autoload (cdr x))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
260 ((require defface) nil) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
261 (t (message "Unexpected element %s in load-history" x))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
262 ;; Kill local values as much as possible. |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
263 (dolist (buf (buffer-list)) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
264 (with-current-buffer buf |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
265 (if (and (boundp x) (timerp (symbol-value x))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
266 (cancel-timer (symbol-value x))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
267 (kill-local-variable x))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
268 (if (and (boundp x) (timerp (symbol-value x))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
269 (cancel-timer (symbol-value x))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
270 ;; Get rid of the default binding if we can. |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
271 (unless (local-variable-if-set-p x) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
272 (makunbound x)))) |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
273 ;; Delete the load-history element for this file. |
e635cd6341e6
(unload-function-features-list): Rename from `unload-hook-features-list'.
Juanma Barranquero <lekktu@gmail.com>
parents:
79140
diff
changeset
|
274 (setq load-history (delq (assoc file load-history) load-history)))) |
75687
8cf73d911b65
(unload-feature): Silently ignore `load-history' entries of the form `(defface
Juanma Barranquero <lekktu@gmail.com>
parents:
75347
diff
changeset
|
275 ;; Don't return load-history, it is not useful. |
8cf73d911b65
(unload-feature): Silently ignore `load-history' entries of the form `(defface
Juanma Barranquero <lekktu@gmail.com>
parents:
75347
diff
changeset
|
276 nil) |
2543 | 277 |
278 (provide 'loadhist) | |
279 | |
69935
3fc0524ae318
(unload-feature): A bit of sanity check of
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69165
diff
changeset
|
280 ;; arch-tag: 70bb846a-c413-4f01-bf88-78dba4ac0798 |
2543 | 281 ;;; loadhist.el ends here |