annotate lisp/cdl.el @ 71893:bb3316be643e

Require 'cl during byte-compilation/interactive load, for the `assert' macro. (allout-mode-deactivate-hook): New hook, is run when allout mode deactivates. (allout-developer): New allout customization subgroup. (allout-run-unit-tests-on-load): New allout-developer customization variable, when true allout unit tests are run towards end of file load/eval. (allout-inhibit-auto-fill): Disable auto-fill activity even during auto-fill-mode. (allout-resumptions): Removed, to be replaced by... (allout-add-resumptions): Register variable settings to be reinstated by `allout-do-resumptions'. The settings are made buffer-local, but the locality/globality of the suspended setting is restored on resumption. (allout-do-resumptions): Reinstate all settings suspended using `allout-add-resumptions'. (allout-test-resumptions): Unit tests (and intermediate variables) for resumptions. (allout-tests-globally-unbound, allout-tests-globally-true) (allout-tests-locally-true): Intermediate variables for resumptions unit tests. (allout-overlay-preparations): Replaces `allout-set-overlay-category'. (allout-exposure-category): Replaces 'allout-overlay-category variable. (allout-mode): Use `allout-add-resumptions' and `allout-do-resumptions' instead of retired `allout-resumptions'. For hook functions, use `local' parameter so hook settings are created and removed as buffer-local settings. Revise (resumptions) setting auto-fill-function so it is set only if already active. (The related fill-function settings are all made in either case, so that activating auto-fill-mode activity will have the custom allout-mode behaviors (hanging indent on topics, if configured for it). Also, remove all allout-exposure-category overlays on mode deactivation. (allout-hotspot-key-handler): New function extracted from `allout-pre-command-business', so the functionality can be used for other purposes, eg as a binding in an overlay. (allout-pre-command-business): Use new `allout-hotspot-key-handler'. (allout-auto-fill): Respect new `allout-inhibit-auto-fill' customization variable. (allout-run-unit-tests): Run the (currently quite small) repertoire of unit tests. Called just before the provide iff user has customized `allout-run-unit-tests-on-load' non-nil.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 14 Jul 2006 11:24:56 +0000
parents 3bd95f4f2941
children ddcbd2c1b70d c5406394f567
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38409
153f1b1f2efd Emacs lisp coding convention fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 30294
diff changeset
1 ;;; cdl.el --- Common Data Language (CDL) utility functions for GNU Emacs
4865
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2
68651
3bd95f4f2941 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64762
diff changeset
3 ;; Copyright (C) 1993, 2002, 2003, 2004, 2005,
3bd95f4f2941 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64762
diff changeset
4 ;; 2006 Free Software Foundation, Inc.
4865
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5
4866
56713fbab9ad entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 4865
diff changeset
6 ;; Author: ATAE@spva.physics.imperial.ac.uk (Ata Etemadi)
30294
130f960764fd Fix `Maintainer' keyword.
Gerd Moellmann <gerd@gnu.org>
parents: 21057
diff changeset
7 ;; Maintainer: FSF
4866
56713fbab9ad entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 4865
diff changeset
8 ;; Keywords: data
56713fbab9ad entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 4865
diff changeset
9
4865
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10 ;; This file is part of GNU Emacs.
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 ;; it under the terms of the GNU General Public License as published by
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 ;; the Free Software Foundation; either version 2, or (at your option)
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15 ;; any later version.
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 ;; GNU Emacs is distributed in the hope that it will be useful,
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20 ;; GNU General Public License for more details.
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13337
diff changeset
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
64091
6fb026ad601f Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 52401
diff changeset
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
6fb026ad601f Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 52401
diff changeset
25 ;; Boston, MA 02110-1301, USA.
4865
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26
38412
253f761ad37b Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents: 38409
diff changeset
27 ;;; Commentary:
253f761ad37b Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents: 38409
diff changeset
28
4865
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29 ;;; Code:
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31 (defun cdl-get-file (filename)
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32 "Run file through ncdump and insert result into buffer after point."
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33 (interactive "fCDF file: ")
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
34 (message "ncdump in progress...")
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35 (let ((start (point)))
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36 (call-process "ncdump" nil t nil (expand-file-name filename))
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37 (goto-char start))
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38 (message "ncdump in progress...done"))
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40 (defun cdl-put-region (filename start end)
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 "Run region through ncgen and write results into a file."
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
42 (interactive "FNew CDF file: \nr")
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43 (message "ncgen in progress...")
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
44 (call-process-region start end "ncgen"
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45 nil nil nil "-o" (expand-file-name filename))
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
46 (message "ncgen in progress...done"))
4baa7107909b Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47
18383
11218164bc54 Add provide call.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
48 (provide 'cdl)
11218164bc54 Add provide call.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
49
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 38412
diff changeset
50 ;;; arch-tag: b8e95a6e-2387-4077-ad9a-af54b09b8615
38409
153f1b1f2efd Emacs lisp coding convention fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 30294
diff changeset
51 ;;; cdl.el ends here