<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><div>Le 16 juin 07 à 19:12, Ciarán Walsh a écrit :</div><br class="Apple-interchange-newline"><blockquote type="cite"><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0; "><div><div>On 16 Jun 2007, at 17:13, MakTheYak wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><p style="margin: 0.0px 0.0px 0.0px 0.0px"><font face="Helvetica" size="3" style="font: 12.0px Helvetica"><span class="Apple-converted-space"> </span>So I was just wondering if anyone knew of a way to disable the</font></p><p style="margin: 0.0px 0.0px 0.0px 0.0px"><font face="Helvetica" size="3" style="font: 12.0px Helvetica">feature?</font></p></blockquote></div>This is the best thing ever and you are quite mad. However you can't find it that annoying as if you'd simply looked in Preferences → Text Editing you would see the option to disable it ;)</span></blockquote></div><br><div>Well, actually, it can be quite annoying, depending on the context.</div><div><br class="webkit-block-placeholder"></div><div>Typically, in Lisp, the defun is somehing like</div><div><br class="webkit-block-placeholder"></div><div>(defun ${1=name} (${2=parameters} [...]))</div><div><br class="webkit-block-placeholder"></div><div>The same macro would make perfect sense when you define methods.</div><div>However, while function parameters are given in a list</div><div><br class="webkit-block-placeholder"></div><div>(defun foo (x y z) [...])</div><div><br class="webkit-block-placeholder"></div><div>the method gives a type, too.</div><div><br class="webkit-block-placeholder"></div><div>(defmethod bar ((x number) (y list) (z some-type)) [...])</div><div><br></div><div>Thus, when defining a method and right after typing the name, you often come tosuch text</div><div><br class="webkit-block-placeholder"></div><div>(defmethod bar ((parameter)) [...])</div><div><br></div><div>with the caret right before the "parameter".</div><div><br class="webkit-block-placeholder"></div><div>The huge number of situation where it's useful is worth the annoyance, though.</div></body></html>