Switch to recommended form of GPLv3 permissions notice.
[emacs.git] / lisp / cdl.el
blob87c78fd4167d0f7cf9ac73954e7cf5d082346232
1 ;;; cdl.el --- Common Data Language (CDL) utility functions for GNU Emacs
3 ;; Copyright (C) 1993, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: ATAE@spva.physics.imperial.ac.uk (Ata Etemadi)
7 ;; Maintainer: FSF
8 ;; Keywords: data
10 ;; This file is part of GNU Emacs.
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
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
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.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;;; Code:
29 (defun cdl-get-file (filename)
30 "Run file through ncdump and insert result into buffer after point."
31 (interactive "fCDF file: ")
32 (message "ncdump in progress...")
33 (let ((start (point)))
34 (call-process "ncdump" nil t nil (expand-file-name filename))
35 (goto-char start))
36 (message "ncdump in progress...done"))
38 (defun cdl-put-region (filename start end)
39 "Run region through ncgen and write results into a file."
40 (interactive "FNew CDF file: \nr")
41 (message "ncgen in progress...")
42 (call-process-region start end "ncgen"
43 nil nil nil "-o" (expand-file-name filename))
44 (message "ncgen in progress...done"))
46 (provide 'cdl)
48 ;; arch-tag: b8e95a6e-2387-4077-ad9a-af54b09b8615
49 ;;; cdl.el ends here