summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/map-ynp.el1
-rw-r--r--lisp/misearch.el2
-rw-r--r--lisp/progmodes/bug-reference.el3
-rw-r--r--lisp/userlock.el1
5 files changed, 10 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1534eb2725d..0790df5c25a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
+ * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
+ * progmodes/bug-reference.el, misearch.el: Provide themselves
+ (bug#11915).
+
* progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
of narrowed buffer (bug#11966).
diff --git a/lisp/emacs-lisp/map-ynp.el b/lisp/emacs-lisp/map-ynp.el
index cc4e642daf8..e7806440bf3 100644
--- a/lisp/emacs-lisp/map-ynp.el
+++ b/lisp/emacs-lisp/map-ynp.el
@@ -5,6 +5,7 @@
;; Author: Roland McGrath <roland@gnu.org>
;; Maintainer: FSF
;; Keywords: lisp, extensions
+;; Package: emacs
;; This file is part of GNU Emacs.
diff --git a/lisp/misearch.el b/lisp/misearch.el
index 22021bac570..b175f526e93 100644
--- a/lisp/misearch.el
+++ b/lisp/misearch.el
@@ -379,5 +379,5 @@ whose file names match the specified wildcard."
(provide 'multi-isearch)
-
+(provide 'misearch)
;;; misearch.el ends here
diff --git a/lisp/progmodes/bug-reference.el b/lisp/progmodes/bug-reference.el
index 015b9a9ceaf..613f002fc73 100644
--- a/lisp/progmodes/bug-reference.el
+++ b/lisp/progmodes/bug-reference.el
@@ -30,6 +30,8 @@
;; Two minor modes are provided. One works on any text in the buffer;
;; the other operates only on comments and strings.
+;;; Code:
+
(defvar bug-reference-map
(let ((map (make-sparse-keymap)))
(define-key map [mouse-2] 'bug-reference-push-button)
@@ -154,4 +156,5 @@ the mode if ARG is omitted or nil."
(widen)
(bug-reference-unfontify (point-min) (point-max)))))
+(provide 'bug-reference)
;;; bug-reference.el ends here
diff --git a/lisp/userlock.el b/lisp/userlock.el
index 8a4159aafc0..705d9588249 100644
--- a/lisp/userlock.el
+++ b/lisp/userlock.el
@@ -4,6 +4,7 @@
;; Maintainer: FSF
;; Keywords: internal
+;; Package: emacs
;; This file is part of GNU Emacs.