Lines Matching refs:symbol
124 (defun libxmldoc-lookup-symbol(&optional symbol)
133 (symbol ;; symbol is specified as argument
134 (if (not (assoc symbol libxmldoc-symbols))
135 (setq symbol nil)))
136 ((assoc (thing-at-point 'symbol) libxmldoc-symbols)
137 (setq symbol (thing-at-point 'symbol)))
140 ((assoc (concat "*" (thing-at-point 'symbol)) libxmldoc-symbols)
141 (setq symbol (concat "*" (thing-at-point 'symbol))))
145 (setq symbol (completing-read
147 (if (or symbol (null libxmldoc-filter-regexp))
152 t symbol
158 (list (cdr (assoc symbol libxmldoc-symbols)))))