Search found 2 matches

by northern_witch
Sat Nov 20, 2010 7:43 pm
Forum: Dragonfly
Topic: Problems deleting cookie with newLISP and Dragonfly
Replies: 3
Views: 5281

Re: Problems deleting cookie with newLISP and Dragonfly

my solution is to patch response.lsp at line 71 replacing

Code: Select all

(nil? value) (cookie key "" (date-value))
with

Code: Select all

(nil? value) (cookie key "" 0)
and continue using nil as documented

i think problem is about GMT and local time, so cookies expiration date is set to future by using date-value
by northern_witch
Thu Mar 11, 2010 7:50 pm
Forum: newLISP and the O.S.
Topic: Text from clipboard
Replies: 4
Views: 4499

Re: Text from clipboard

Fine func, but sometimes works, sometimes crashes any app (Windows 7 says module w/ error is StackHash…) where i'm trying to paste after putting to clipboard using this code. Any ideas? P.S. Locale switching, may be useful for somebody: … (constant 'CF_LOCALE 16) (constant 'LocaleID (pack "u" 0x419)...