comparison lispref/tips.texi @ 44654:774d49397ece

(Tips for Making Compiled Code Fast): Don't advertise profile.el.
author Eli Zaretskii <eliz@gnu.org>
date Wed, 17 Apr 2002 15:03:02 +0000
parents 7359d6d75a9c
children d49f5ed1a977
comparison
equal deleted inserted replaced
44653:4d83a1e04d99 44654:774d49397ece
416 416
417 @itemize @bullet 417 @itemize @bullet
418 @item 418 @item
419 @cindex profiling 419 @cindex profiling
420 @cindex timing programs 420 @cindex timing programs
421 @cindex @file{profile.el}
422 @cindex @file{elp.el} 421 @cindex @file{elp.el}
423 Profile your program with the @file{profile} library or the @file{elp} 422 Profile your program with the @file{elp} library. See the file
424 library. See the files @file{profile.el} and @file{elp.el} for 423 @file{elp.el} for instructions.
425 instructions.
426 424
427 @item 425 @item
428 Use iteration rather than recursion whenever possible. 426 Use iteration rather than recursion whenever possible.
429 Function calls are slow in Emacs Lisp even when a compiled function 427 Function calls are slow in Emacs Lisp even when a compiled function
430 is calling another compiled function. 428 is calling another compiled function.