comparison lisp/progmodes/gud.el @ 78487:419c5c316b51

Replace `iff' in doc-strings and comments.
author Glenn Morris <rgm@gnu.org>
date Wed, 08 Aug 2007 07:31:11 +0000
parents c1ec1c8a8d2e
children 8bf8256b3ffa
comparison
equal deleted inserted replaced
78486:f0a07da7dd45 78487:419c5c316b51
3351 "The mouse movement event that led to a tooltip display. 3351 "The mouse movement event that led to a tooltip display.
3352 This event can be examined by forms in GUD-TOOLTIP-DISPLAY.") 3352 This event can be examined by forms in GUD-TOOLTIP-DISPLAY.")
3353 3353
3354 (defun gud-tooltip-dereference (&optional arg) 3354 (defun gud-tooltip-dereference (&optional arg)
3355 "Toggle whether tooltips should show `* expr' or `expr'. 3355 "Toggle whether tooltips should show `* expr' or `expr'.
3356 With arg, dereference expr iff arg is positive." 3356 With arg, dereference expr if ARG is positive, otherwise do not derereference."
3357 (interactive "P") 3357 (interactive "P")
3358 (setq gud-tooltip-dereference 3358 (setq gud-tooltip-dereference
3359 (if (null arg) 3359 (if (null arg)
3360 (not gud-tooltip-dereference) 3360 (not gud-tooltip-dereference)
3361 (> (prefix-numeric-value arg) 0))) 3361 (> (prefix-numeric-value arg) 0)))