home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / sys / next / software / 3299 < prev    next >
Encoding:
Text File  |  1993-01-06  |  1.5 KB  |  41 lines

  1. Newsgroups: comp.sys.next.software
  2. Path: sparky!uunet!gumby!destroyer!news.iastate.edu!scl1.al.iastate.edu!tlm
  3. From: tlm@iastate.edu (Tom Marchioro)
  4. Subject: Re: Mathematica question
  5. Message-ID: <tlm.726336627@scl1.al.iastate.edu>
  6. Sender: news@news.iastate.edu (USENET News System)
  7. Organization: Iowa State University, Ames IA
  8. References: <1993Jan6.141928.28506@julian.uwo.ca>
  9. Date: Wed, 6 Jan 1993 16:10:27 GMT
  10. Lines: 29
  11.  
  12. In <1993Jan6.141928.28506@julian.uwo.ca> vesely@next.heart.rri.uwo.ca (Ivan Vesely) writes:
  13.  
  14. >How do I disable the irritating warning messages that tell me I have picked  
  15. >"wrong" varible names, eg:
  16.  
  17. >General::spell1: 
  18. >   Possible spelling error: new symbol name "yvalues"
  19. >     is similar to existing symbol "xvalues".
  20.  
  21. >I happen to enjoy picking similar names!
  22.  
  23.  
  24. This is documented somewhere in the Mathematica Bible (what isn't?) but
  25. you could easily miss it.  I frequently have notebooks with variables like
  26. amatrix, bmatrix, etc. (it's less a matter of enjoyment than one of giving
  27. clear variable names) and get tired of the messages as well.  Put the following
  28. at the top of your notebook 
  29.  
  30. Off[General::spell]
  31. Off[General::spell1]
  32.  
  33. and the messages will vanish.  Another good trick is to bring up the style
  34. inspector and make the cell which you put the above commands into an 
  35. initialization cell, then it will be automatically executed when you open 
  36. the notebook (well, you have to set that option in Preferences) and you'll
  37. never see the messages.
  38.  
  39. Hope this is helpful -- Tom
  40.  
  41.