From: shuhei Date: Mon, 22 Nov 1999 12:42:23 +0000 (+0000) Subject: Updated header. X-Git-Tag: apel-shubit-10_0~21 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=dd9c9c5a35f5c32bfde9a5c580bd2b882c8bfced;p=elisp%2Fapel.git Updated header. Removed "[SOURCE INFO]" style comment from docstrings. --- diff --git a/ChangeLog b/ChangeLog index d68781a..ad9c586 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +1999-11-22 Shuhei KOBAYASHI + + * pccl-20.el, pccl-om.el: Removed "[SOURCE INFO]" style + comment from docstrings. + + * pccl-om.el, localhook.el, pcustom.el: Updated header. + 1999-11-13 Shuhei KOBAYASHI * Removed "[SOURCE INFO]" style comment from docstrings. diff --git a/localhook.el b/localhook.el index 8c1bf11..d584fdc 100644 --- a/localhook.el +++ b/localhook.el @@ -1,7 +1,6 @@ ;;; localhook.el --- local hook variable support in emacs-lisp. -;; Copyright (C) 1985, 1986, 1992, 1994, 1995 Free Software Foundation, Inc. -;; Copyright (C) 1999 Shuhei KOBAYASHI +;; Copyright (C) 1985,86,92,94,95,1999 Free Software Foundation, Inc. ;; Author: Shuhei KOBAYASHI ;; Keywords: compatibility diff --git a/pccl-20.el b/pccl-20.el index 3782b7c..c670ae8 100644 --- a/pccl-20.el +++ b/pccl-20.el @@ -80,8 +80,7 @@ CODING-SYSTEM, DECODER and ENCODER must be symbol." (defun ccl-execute (ccl-prog reg) "\ Execute CCL-PROG with registers initialized by REGISTERS. -If CCL-PROG is symbol, it is dereferenced. -\[Emacs 20.3 emulating function]" +If CCL-PROG is symbol, it is dereferenced." (ccl-vector-program-execute (if (symbolp ccl-prog) (symbol-value ccl-prog) ccl-prog) reg))) @@ -92,8 +91,7 @@ If CCL-PROG is symbol, it is dereferenced. (defun ccl-execute-on-string (ccl-prog status string &optional contin) "\ Execute CCL-PROG with initial STATUS on STRING. -If CCL-PROG is symbol, it is dereferenced. -\[Emacs 20.3 emulating function]" +If CCL-PROG is symbol, it is dereferenced." (ccl-vector-program-execute-on-string (if (symbolp ccl-prog) (symbol-value ccl-prog) ccl-prog) status string contin))) diff --git a/pccl-om.el b/pccl-om.el index 205bce7..b289b27 100644 --- a/pccl-om.el +++ b/pccl-om.el @@ -4,7 +4,7 @@ ;; Copyright (C) 1998 Tanaka Akira ;; Author: Tanaka Akira -;; Shuhei KOBAYASHI +;; Shuhei KOBAYASHI ;; Keywords: emulation, compatibility, Mule ;; This file is part of APEL (A Portable Emacs Library). @@ -48,16 +48,14 @@ CODING-SYSTEM, DECODER and ENCODER must be symbol." (defun ccl-execute (ccl-prog reg) "Execute CCL-PROG with registers initialized by REGISTERS. -If CCL-PROG is symbol, it is dereferenced. -\[Emacs 20.3 emulating function]" +If CCL-PROG is symbol, it is dereferenced." (exec-ccl (if (symbolp ccl-prog) (symbol-value ccl-prog) ccl-prog) reg)) (defun ccl-execute-on-string (ccl-prog status string &optional contin) "Execute CCL-PROG with initial STATUS on STRING. -If CCL-PROG is symbol, it is dereferenced. -\[Emacs 20.3 emulating function]" +If CCL-PROG is symbol, it is dereferenced." (exec-ccl-string (if (symbolp ccl-prog) (symbol-value ccl-prog) ccl-prog) status string)) diff --git a/pcustom.el b/pcustom.el index 2ecd6b7..87a278a 100644 --- a/pcustom.el +++ b/pcustom.el @@ -1,7 +1,7 @@ ;;; pcustom.el -- a portable custom.el. +;; Copyright (C) 1999 Free Software Foundation, Inc. ;; Copyright (C) 1999 Mikio Nakajima -;; Copyright (C) 1999 Shuhei KOBAYASHI ;; Author: Mikio Nakajima ;; Shuhei KOBAYASHI