(latexenc-find-file-coding-system): Don't inherit the EOL part of the
[emacs.git] / lisp / cdl.el
blob53c9ced9cec11fb4333301a43dc24cc1d609d541
1 ;;; cdl.el --- Common Data Language (CDL) utility functions for GNU Emacs
3 ;; Copyright (C) 1993 Free Software Foundation, Inc.
5 ;; Author: ATAE@spva.physics.imperial.ac.uk (Ata Etemadi)
6 ;; Maintainer: FSF
7 ;; Keywords: data
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
26 ;;; Commentary:
28 ;;; Code:
30 (defun cdl-get-file (filename)
31 "Run file through ncdump and insert result into buffer after point."
32 (interactive "fCDF file: ")
33 (message "ncdump in progress...")
34 (let ((start (point)))
35 (call-process "ncdump" nil t nil (expand-file-name filename))
36 (goto-char start))
37 (message "ncdump in progress...done"))
39 (defun cdl-put-region (filename start end)
40 "Run region through ncgen and write results into a file."
41 (interactive "FNew CDF file: \nr")
42 (message "ncgen in progress...")
43 (call-process-region start end "ncgen"
44 nil nil nil "-o" (expand-file-name filename))
45 (message "ncgen in progress...done"))
47 (provide 'cdl)
49 ;;; arch-tag: b8e95a6e-2387-4077-ad9a-af54b09b8615
50 ;;; cdl.el ends here