annotate lisp/page.el @ 5634:2014ff433daf

Support hash COLLECTIONs, #'{all,try}-completion{s,}; add #'test-completion src/ChangeLog addition: 2012-01-01 Aidan Kehoe <kehoea@parhasard.net> Add #'test-completion, API from GNU. Accept hash table COLLECTIONs in it and in the other completion-oriented functions, #'try-completion, #'all-completions, and those Lisp functions implemented in terms of them. * lisp.h: Update the prototype of map_obarray(), making FN compatible with the FUNCTION argument of elisp_maphash(); * abbrev.c (abbrev_match_mapper): * abbrev.c (record_symbol): * doc.c (verify_doc_mapper): * symbols.c (mapatoms_1): * symbols.c (apropos_mapper): Update these mapper functions to reflect the new argument to map_obarray(). * symbols.c (map_obarray): Call FN with two arguments, the string name of the symbol, and the symbol itself, for API (mapper) compatibility with elisp_maphash(). * minibuf.c (map_completion): New. Map a maphash_function_t across a non function COLLECTION, as appropriate for #'try-completion and friends. * minibuf.c (map_completion_list): New. Map a maphash_function_t across a pseudo-alist, as appropriate for the completion functions. * minibuf.c (ignore_completion_p): PRED needs to be called with two args if and only if the collection is a hash table. Implement this. * minibuf.c (try_completion_mapper): New. The loop body of #'try-completion, refactored out. * minibuf.c (Ftry_completion): Use try_completion_mapper(), map_completion(). * minibuf.c (all_completions_mapper): New. The loop body of #'all-completions, refactored out. * minibuf.c (Fall_completions): Use all_completions_mapper(), map_completion(). * minibuf.c (test_completion_mapper): New. The loop body of #'test-completion. * minibuf.c (Ftest_completion): New, API from GNU. * minibuf.c (syms_of_minibuf): Make Ftest_completion available. tests/ChangeLog addition: 2012-01-01 Aidan Kehoe <kehoea@parhasard.net> * automated/completion-tests.el: New. Test #'try-completion, #'all-completion and #'test-completion with list, vector and hash-table COLLECTION arguments.
author Aidan Kehoe <kehoea@parhasard.net>
date Sun, 01 Jan 2012 15:18:52 +0000
parents 308d34e9f07d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2510
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
1 ;;; page.el --- page motion commands for Emacs
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
2
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
3 ;; Copyright (C) 1985, 1997 Free Software Foundation, Inc.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
4
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
5 ;; Maintainer: FSF
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
6 ;; Keywords: extensions, dumped
2510
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
7 ;; Keywords: wp convenience
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
8
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
9 ;; This file is part of XEmacs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
10
5402
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 2510
diff changeset
11 ;; XEmacs is free software: you can redistribute it and/or modify it
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 2510
diff changeset
12 ;; under the terms of the GNU General Public License as published by the
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 2510
diff changeset
13 ;; Free Software Foundation, either version 3 of the License, or (at your
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 2510
diff changeset
14 ;; option) any later version.
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
15
5402
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 2510
diff changeset
16 ;; XEmacs is distributed in the hope that it will be useful, but WITHOUT
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 2510
diff changeset
17 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 2510
diff changeset
18 ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 2510
diff changeset
19 ;; for more details.
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
20
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
5402
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 2510
diff changeset
22 ;; along with XEmacs. If not, see <http://www.gnu.org/licenses/>.
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
23
2510
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
24 ;;; Synched up with: FSF 21.3.
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
25
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
26 ;;; Commentary:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
27
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
28 ;; This file is dumped with XEmacs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
29
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
30 ;; This code provides the page-oriented movement and selection commands
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
31 ;; documented in the XEmacs Reference Manual.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
32
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
33 ;;; Code:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
34
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
35 (defun forward-page (&optional count)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
36 "Move forward to page boundary. With arg, repeat, or go back if negative.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
37 A page boundary is any line whose beginning matches the regexp
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
38 `page-delimiter'."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
39 (interactive "_p") ; XEmacs
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
40 (or count (setq count 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
41 (while (and (> count 0) (not (eobp)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
42 ;; In case the page-delimiter matches the null string,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
43 ;; don't find a match without moving.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
44 (if (bolp) (forward-char 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
45 (if (re-search-forward page-delimiter nil t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
46 nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
47 (goto-char (point-max)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
48 (setq count (1- count)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
49 (while (and (< count 0) (not (bobp)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
50 ;; In case the page-delimiter matches the null string,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
51 ;; don't find a match without moving.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
52 (and (save-excursion (re-search-backward page-delimiter nil t))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
53 (= (match-end 0) (point))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
54 (goto-char (match-beginning 0)))
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 209
diff changeset
55 (backward-char 1)
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
56 (if (re-search-backward page-delimiter nil t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
57 ;; We found one--move to the end of it.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
58 (goto-char (match-end 0))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
59 ;; We found nothing--go to beg of buffer.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
60 (goto-char (point-min)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
61 (setq count (1+ count))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
62
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
63 (defun backward-page (&optional count)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
64 "Move backward to page boundary. With arg, repeat, or go fwd if negative.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
65 A page boundary is any line whose beginning matches the regexp
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
66 `page-delimiter'."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
67 (interactive "_p") ; XEmacs
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
68 (or count (setq count 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
69 (forward-page (- count)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
70
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
71 (defun mark-page (&optional arg)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
72 "Put mark at end of page, point at beginning.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
73 A numeric arg specifies to move forward or backward by that many pages,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
74 thus marking a page other than the one point was originally in."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
75 (interactive "P")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
76 (setq arg (if arg (prefix-numeric-value arg) 0))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
77 (if (> arg 0)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
78 (forward-page arg)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
79 (if (< arg 0)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
80 (forward-page (1- arg))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
81 (forward-page)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
82 (push-mark nil t t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
83 (forward-page -1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
84
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
85 (defun narrow-to-page (&optional arg)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
86 "Make text outside current page invisible.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
87 A numeric arg specifies to move forward or backward by that many pages,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
88 thus showing a page other than the one point was originally in."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
89 (interactive "P")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
90 (setq arg (if arg (prefix-numeric-value arg) 0))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
91 (save-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
92 (widen)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
93 (if (> arg 0)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
94 (forward-page arg)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
95 (if (< arg 0)
2510
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
96 (let ((adjust 0)
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
97 (opoint (point)))
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
98 ;; If we are not now at the beginning of a page,
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
99 ;; move back one extra time, to get to the start of this page.
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
100 (save-excursion
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
101 (beginning-of-line)
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
102 (or (and (looking-at page-delimiter)
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
103 (eq (match-end 0) opoint))
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
104 (setq adjust 1)))
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
105 (forward-page (- arg adjust)))))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
106 ;; Find the end of the page.
2510
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
107 (set-match-data nil)
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
108 (forward-page)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
109 ;; If we stopped due to end of buffer, stay there.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
110 ;; If we stopped after a page delimiter, put end of restriction
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
111 ;; at the beginning of that line.
2510
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
112 ;; Before checking the match that was found,
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
113 ;; verify that forward-page actually set the match data.
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
114 (if (and (match-beginning 0)
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
115 (save-excursion
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
116 (goto-char (match-beginning 0)) ; was (beginning-of-line)
6f72d9a709c3 [xemacs-hg @ 2005-01-26 09:56:05 by ben]
ben
parents: 446
diff changeset
117 (looking-at page-delimiter)))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
118 (beginning-of-line))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
119 (narrow-to-region (point)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
120 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
121 ;; Find the top of the page.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
122 (forward-page -1)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
123 ;; If we found beginning of buffer, stay there.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
124 ;; If extra text follows page delimiter on same line,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
125 ;; include it.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
126 ;; Otherwise, show text starting with following line.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
127 (if (and (eolp) (not (bobp)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
128 (forward-line 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
129 (point)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
130 (put 'narrow-to-page 'disabled t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
131
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
132 (defun count-lines-page ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
133 "Report number of lines on current page, and how many are before or after point."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
134 (interactive "_") ; XEmacs
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
135 (save-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
136 (let ((opoint (point)) beg end
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
137 total before after)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
138 (forward-page)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
139 (beginning-of-line)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
140 (or (looking-at page-delimiter)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
141 (end-of-line))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
142 (setq end (point))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
143 (backward-page)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
144 (setq beg (point))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
145 (setq total (count-lines beg end)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
146 before (count-lines beg opoint)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
147 after (count-lines opoint end))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
148 (message "Page has %d lines (%d + %d)" total before after))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
149
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
150 (defun what-page ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
151 "Print page and line number of point."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
152 (interactive "_") ; XEmacs
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
153 (save-restriction
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
154 (widen)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
155 (save-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
156 (beginning-of-line)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
157 (let ((count 1)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
158 (opoint (point)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
159 (goto-char 1)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
160 (while (re-search-forward page-delimiter opoint t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
161 (setq count (1+ count)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
162 (message "Page %d, line %d"
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
163 count
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
164 (1+ (count-lines (point) opoint)))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
165
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
166 ;;; Place `provide' at end of file.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
167 (provide 'page)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
168
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
169 ;;; page.el ends here