Changeset 211 for trunk/example


Ignore:
Timestamp:
06/30/08 21:29:32 (17 years ago)
Author:
Erik Huelsmann
Message:

Update specbot.lisp to conform to deprecation of trailing-arguments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/example/specbot.lisp ΒΆ

    r103 r211  
    106106                         (source message)
    107107                         (first (arguments message))))
    108         (to-lookup (strip-address (trailing-argument message))))
     108        (to-lookup (strip-address (car (last (arguments message))))))
    109109    (if (and (or
    110110              (string-equal (first (arguments message)) *nickname*)
    111               (not (string= to-lookup (trailing-argument message))))
     111              (not (string= to-lookup (car (last (arguments message))))))
    112112             (member to-lookup '("help" "help?") :test #'string-equal))
    113113        (progn
Note: See TracChangeset for help on using the changeset viewer.