changelog shortlog tags changeset files revisions annotate raw

browse-funcs.el

changeset 66: 5b737eefe5ea
author: kim.vanwyk
date: Wed Nov 10 15:19:03 2010 +0200 (18 months ago)
permissions: -rw-r--r--
description: Adding CSharp Mode and Google Weather
1(defun occur-at-point()
2 "invokes occur with the thing-at-point"
3 (interactive)
4 (if (thing-at-point 'symbol)
5 (occur (thing-at-point 'symbol))
6 (call-interactively 'other-window)
7 )
8 )
9
10(provide 'browse-funcs)