# HG changeset patch # User Oleksandr Gavenko # Date 1420286484 -7200 # Node ID a653ec78b1b8730128172184b33f644efe25128a # Parent c77807176b360019145cf96d6195999f1e6c8316 Find variable/function/feature by name or value. diff -r c77807176b36 -r a653ec78b1b8 emacs.rst --- a/emacs.rst Sun Dec 28 00:49:35 2014 +0200 +++ b/emacs.rst Sat Jan 03 14:01:24 2015 +0200 @@ -31,8 +31,11 @@ http://emacsformacosx.com/ Clean GNU Emacs for Mac OS X. +Development. +============ + Variables. -========== +---------- Select one of:: @@ -40,11 +43,21 @@ (setq variable value) (defvar variable value "documentation") -or (replace with:: +or file local:: + + # Local variables: + # variable: value + # End: - # Local variables - # variable value - # End +Find variable/function/feature by name or value. +------------------------------------------------ +:: + + (apropos-value "PATT") + (apropos-variable "PATT") + (apropos-function "PATT") + (apropos-library "PATT") + (apropos-documentation "PATT") Debugging. ==========