sweep_handle_identifier_at_point_goal(_Path, _M0, undefined, Goal) :-
!,
pi_head(PI, Goal),
- asserta(sweep_current_identifier_at_point(undefined:PI)).
+ asserta(sweep_current_identifier_at_point(PI)).
sweep_handle_identifier_at_point_goal(_Path, _M0, meta, _:Goal) :-
!,
pi_head(PI, Goal),
(defun sweeprolog--buttonize (string callback data)
(if (fboundp 'buttonize)
(buttonize string callback data)
- (button-buttonize string callback data)))
+ (if (fboundp 'button-buttonize)
+ (button-buttonize string callback data)
+ (propertize string
+ 'face 'button
+ 'button t
+ 'follow-link t
+ 'category t
+ 'button-data data
+ 'keymap button-map
+ 'action callback))))
(defun sweeprolog--buttonize-region (start end callback data)
(if (fboundp 'buttonize-region)