(Download): Renamed from "Anonymous FTP"; modify for
[elisp/apel.git] / poem-nemacs.el
index ad4b55e..8af6364 100644 (file)
@@ -1,8 +1,8 @@
 ;;; poem-nemacs.el --- poem implementation for Nemacs
 
-;; Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
+;; Copyright (C) 1995,1996,1997,1998,1999 Free Software Foundation, Inc.
 
-;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
+;; Author: MORIOKA Tomohiko <tomo@m17n.org>
 ;; Keywords: emulation, compatibility, Mule
 
 ;; This file is part of APEL (A Portable Emacs Library).
@@ -19,8 +19,8 @@
 
 ;; You should have received a copy of the GNU General Public License
 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
-;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-;; Boston, MA 02111-1307, USA.
+;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+;; Boston, MA 02110-1301, USA.
 
 ;;; Code:
 
 ;;(defconst lc-jp  146)
 
 
-;;; @ coding system
-;;;
-
-(defvar coding-system-kanji-code-alist
-  '((binary     . 0)
-    (raw-text   . 0)
-    (shift_jis  . 1)
-    (iso-2022-jp . 2)
-    (ctext      . 2)
-    (euc-jp     . 3)
-    ))
-
-(defun decode-coding-string (string coding-system)
-  "Decode the STRING which is encoded in CODING-SYSTEM.
-\[emu-nemacs.el; EMACS 20 emulating function]"
-  (let ((code (if (integerp coding-system)
-                 coding-system
-               (cdr (assq coding-system coding-system-kanji-code-alist)))))
-    (if (eq code 3)
-       string
-      (convert-string-kanji-code string code 3)
-      )))
-
-(defun encode-coding-string (string coding-system)
-  "Encode the STRING to CODING-SYSTEM.
-\[emu-nemacs.el; EMACS 20 emulating function]"
-  (let ((code (if (integerp coding-system)
-                 coding-system
-               (cdr (assq coding-system coding-system-kanji-code-alist)))))
-    (if (eq code 3)
-       string
-      (convert-string-kanji-code string 3 code)
-      )))
-
-(defun decode-coding-region (start end coding-system)
-  "Decode the text between START and END which is encoded in CODING-SYSTEM.
-\[emu-nemacs.el; EMACS 20 emulating function]"
-  (let ((code (if (integerp coding-system)
-                 coding-system
-               (cdr (assq coding-system coding-system-kanji-code-alist)))))
-    (save-excursion
-      (save-restriction
-       (narrow-to-region start end)
-       (convert-region-kanji-code start end code 3)
-       ))))
-
-(defun encode-coding-region (start end coding-system)
-  "Encode the text between START and END to CODING-SYSTEM.
-\[emu-nemacs.el; EMACS 20 emulating function]"
-  (let ((code (if (integerp coding-system)
-                 coding-system
-               (cdr (assq coding-system coding-system-kanji-code-alist)))))
-    (save-excursion
-      (save-restriction
-       (narrow-to-region start end)
-       (convert-region-kanji-code start end 3 code)
-       ))))
-
-(defun detect-coding-region (start end)
-  "Detect coding-system of the text in the region between START and END.
-\[emu-nemacs.el; Emacs 20 emulating function]"
-  (if (save-excursion
-       (save-restriction
-         (narrow-to-region start end)
-         (goto-char start)
-         (re-search-forward "[\200-\377]" nil t)))
-      'euc-jp
-    ))
-
-(defalias 'set-buffer-file-coding-system 'set-kanji-fileio-code)
-
-
-;;; @ without code-conversion
-;;;
-
-(defmacro as-binary-process (&rest body)
-  (` (let (selective-display   ; Disable ^M to nl translation.
-          ;; NEmacs
-          kanji-flag
-          (default-kanji-process-code 0)
-          program-kanji-code-alist)
-       (,@ body))))
-
-(defmacro as-binary-input-file (&rest body)
-  (` (let (kanji-flag)
-       (,@ body))))
-
-(defmacro as-binary-output-file (&rest body)
-  (` (let (kanji-flag)
-       (,@ body))))
-
-(defun write-region-as-binary (start end filename
-                                    &optional append visit lockname)
-  "Like `write-region', q.v., but don't code conversion. [emu-nemacs.el]"
-  (as-binary-output-file
-   (write-region start end filename append visit)))
-
-(defun insert-file-contents-as-binary (filename
-                                      &optional visit beg end replace)
-  "Like `insert-file-contents', q.v., but don't character code conversion.
-\[emu-nemacs.el]"
-  (as-binary-input-file
-   ;; Returns list absolute file name and length of data inserted.
-   (insert-file-contents filename visit beg end replace)))
-
-(defun insert-file-contents-as-raw-text (filename
-                                        &optional visit beg end replace)
-  "Like `insert-file-contents', q.v., but don't character code conversion.
-\[emu-nemacs.el]"
-  (as-binary-input-file
-   ;; Returns list absolute file name and length of data inserted.
-   (insert-file-contents filename visit beg end replace)))
-
-(defun write-region-as-raw-text-CRLF (start end filename
-                                           &optional append visit lockname)
-  "Like `write-region', q.v., but don't code conversion. [emu-nemacs.el]"
-  (let ((the-buf (current-buffer)))
-    (with-temp-buffer
-      (insert-buffer-substring the-buf start end)
-      (goto-char (point-min))
-      (while (re-search-forward "\\(\\=\\|[^\r]\\)\n" nil t)
-       (replace-match "\\1\r\n"))
-      (write-region-as-binary (point-min)(point-max)
-                             filename append visit))))
-
-(defun open-network-stream-as-binary (name buffer host service)
-  "Like `open-network-stream', q.v., but don't code conversion."
-  (let ((process (open-network-stream name buffer host service)))
-    (set-process-kanji-code process 0)
-    process))
-
-
-;;; @ with code-conversion
-;;;
-
-(defun insert-file-contents-as-specified-coding-system (filename &rest args)
-  "Like `insert-file-contents', q.v., but code convert by the specified
-coding-system. ARGS the optional arguments are passed to
-`insert-file-contents' except for the last element. The last element of
-ARGS must be a coding-system."
-  (let ((kanji-fileio-code (car (reverse args)))
-       kanji-expected-code)
-    (apply' insert-file-contents filename (nreverse (cdr (nreverse args))))))
-
-(defun write-region-as-specified-coding-system (start end filename
-                                                     &rest args)
-  "Like `write-region', q.v., but code convert by the specified coding-system.
-ARGS the optional arguments are passed to `write-region' except for the last
-element. The last element of ARGS must be a coding-system."
-  (let ((kanji-fileio-code (car (reverse args)))
-       jka-compr-compression-info-list jam-zcat-filename-list)
-    (apply 'write-region start end filename
-          (nreverse (cdr (nreverse args))))))
-
-
 ;;; @ buffer representation
 ;;;
 
@@ -293,7 +138,8 @@ but the contents viewed as characters do change.
 (defalias 'char-length 'char-bytes)
 
 (defmacro char-next-index (char index)
-  "Return index of character succeeding CHAR whose index is INDEX."
+  "Return index of character succeeding CHAR whose index is INDEX.
+\[emu-nemacs.el]"
   (` (+ (, index) (char-bytes (, char)))))
 
 
@@ -342,14 +188,14 @@ Optional non-nil arg START-COLUMN specifies the starting column.
        ""
       (while (< column start-column)
        (setq ch (aref str from)
-             column (+ column (char-columns ch))
+             column (+ column (char-width ch))
              from (+ from (char-bytes ch))))
       (if (< width max-width)
          (progn
            (setq to from)
            (while (<= column width)
              (setq ch (aref str to)
-                   column (+ column (char-columns ch))
+                   column (+ column (char-width ch))
                    to-prev to
                    to (+ to (char-bytes ch))))
            (setq to to-prev)))
@@ -367,6 +213,7 @@ Optional non-nil arg START-COLUMN specifies the starting column.
 ;;; @ end
 ;;;
 
-(provide 'poem-nemacs)
+(require 'product)
+(product-provide (provide 'poem-nemacs) (require 'apel-ver))
 
 ;;; poem-nemacs.el ends here