Mercurial > hg > xemacs-beta
comparison man/lispref/internationalization.texi @ 444:576fb035e263 r21-2-37
Import from CVS: tag r21-2-37
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:36:19 +0200 |
parents | abe6d1db359e |
children | 03ab78e48ef6 |
comparison
equal
deleted
inserted
replaced
443:a8296e22da4e | 444:576fb035e263 |
---|---|
1 @c -*-texinfo-*- | 1 @c -*-texinfo-*- |
2 @c This is part of the XEmacs Lisp Reference Manual. | 2 @c This is part of the XEmacs Lisp Reference Manual. |
3 @c Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc. | 3 @c Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc. |
4 @c See the file lispref.texi for copying conditions. | 4 @c See the file lispref.texi for copying conditions. |
5 @setfilename ../../info/internationalization.info | 5 @setfilename ../../info/internationalization.info |
6 @node Internationalization, MULE, PostgreSQL Support, top | 6 @node Internationalization, MULE, PostgreSQL Support, top |
7 @chapter Internationalization | 7 @chapter Internationalization |
8 | 8 |
158 @example | 158 @example |
159 (defconst limbs 4 "Number of limbs" "emacs-gorilla") | 159 (defconst limbs 4 "Number of limbs" "emacs-gorilla") |
160 @end example | 160 @end example |
161 @end defspec | 161 @end defspec |
162 | 162 |
163 Autoloaded functions which are specified in @file{loaddefs.el} do not need | 163 @defun autoload function filename &optional docstring interactive type |
164 to have a domain specification, because their documentation strings are | 164 This function defines @var{function} to autoload from @var{filename} |
165 extracted into the main message base. However, for autoloaded functions | |
166 which are specified in a separate package, use following syntax: | |
167 | |
168 @defun autoload symbol filename &optional docstring interactive macro domain | |
169 Example: | 165 Example: |
170 @example | 166 @example |
171 (autoload 'explore "jungle" "Explore the jungle." nil nil "emacs-gorilla") | 167 (autoload 'explore "jungle" "Explore the jungle." nil nil "emacs-gorilla") |
172 @end example | 168 @end example |
173 @end defun | 169 @end defun |