comparison lispref/tips.texi @ 54964:4732f3096a88

(Coding Conventions): defopt -> defcustom.
author Jesper Harder <harder@ifa.au.dk>
date Sun, 18 Apr 2004 02:05:02 +0000
parents 17dfaa4af669
children b6f9481dcccd 4c90ffeb71c5
comparison
equal deleted inserted replaced
54963:a40f83f2ce7e 54964:4732f3096a88
252 @item 252 @item
253 Avoid using macros that define functions and variables with names that 253 Avoid using macros that define functions and variables with names that
254 are constructed. It is best for maintenance when the name of the 254 are constructed. It is best for maintenance when the name of the
255 function or variable being defined is given explicitly in the source 255 function or variable being defined is given explicitly in the source
256 code, as the second element of the list---as it is when you use 256 code, as the second element of the list---as it is when you use
257 @code{defun}, @code{defalias}, @code{defvar} and @code{defopt}. 257 @code{defun}, @code{defalias}, @code{defvar} and @code{defcustom}.
258 258
259 @item 259 @item
260 Please keep the names of your Emacs Lisp source files to 13 characters 260 Please keep the names of your Emacs Lisp source files to 13 characters
261 or less. This way, if the files are compiled, the compiled files' names 261 or less. This way, if the files are compiled, the compiled files' names
262 will be 14 characters or less, which is short enough to fit on all kinds 262 will be 14 characters or less, which is short enough to fit on all kinds