emacs.rst
changeset 1652 a653ec78b1b8
parent 1477 652e9d14c7cc
child 1653 f9aae584ecb4
equal deleted inserted replaced
1651:c77807176b36 1652:a653ec78b1b8
    29   http://alpha.gnu.org/gnu/emacs/windows/
    29   http://alpha.gnu.org/gnu/emacs/windows/
    30                 Official alpha build of GNU Emacs.
    30                 Official alpha build of GNU Emacs.
    31   http://emacsformacosx.com/
    31   http://emacsformacosx.com/
    32                 Clean GNU Emacs for Mac OS X.
    32                 Clean GNU Emacs for Mac OS X.
    33 
    33 
       
    34 Development.
       
    35 ============
       
    36 
    34 Variables.
    37 Variables.
    35 ==========
    38 ----------
    36 
    39 
    37 Select one of::
    40 Select one of::
    38 
    41 
    39   (set 'variable value)
    42   (set 'variable value)
    40   (setq variable value)
    43   (setq variable value)
    41   (defvar variable value "documentation")
    44   (defvar variable value "documentation")
    42 
    45 
    43 or (replace <colon> with::
    46 or file local::
    44 
    47 
    45   # Local variables<colon>
    48   # Local variables:
    46   # variable<colon> value
    49   # variable: value
    47   # End<colon>
    50   # End:
       
    51 
       
    52 Find variable/function/feature by name or value.
       
    53 ------------------------------------------------
       
    54 ::
       
    55 
       
    56   (apropos-value "PATT")
       
    57   (apropos-variable "PATT")
       
    58   (apropos-function "PATT")
       
    59   (apropos-library "PATT")
       
    60   (apropos-documentation "PATT")
    48 
    61 
    49 Debugging.
    62 Debugging.
    50 ==========
    63 ==========
    51 
    64 
    52 Evaluating elisp expression on the fly.
    65 Evaluating elisp expression on the fly.