This function looks up string in the default message domain and returns its translation. If
I18N3was not enabled when XEmacs was compiled, it just returns string.
This function looks up string in the specified message domain and returns its translation. If
I18N3was not enabled when SXEmacs was compiled, it just returns string.
This function associates a pathname with a message domain. Here's how the path to message file is constructed under SunOS 5.x:
{pathname}/{LANG}/LC_MESSAGES/{domain}.moIf
I18N3was not enabled when SXEmacs was compiled, this function does nothing.
This function specifies the text domain used for translating documentation strings and interactive prompts of a function. For example, write:
(defun foo (arg) "Doc string" (domain "emacs-foo") ...)to specify
emacs-fooas the text domain of the functionfoo. The “call” todomainis actually a declaration rather than a function; when actually called,domainjust returnsnil.