~ubuntu-branches/ubuntu/utopic/geany-plugin-spellcheck/utopic

« back to all changes in this revision

Viewing changes to src/speller.c

  • Committer: Bazaar Package Importer
  • Author(s): Bhavani Shankar
  • Date: 2009-06-12 11:34:42 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090612113442-8fbwsszzk4y80mxa
Tags: 0.4-0ubuntu1
* New Upstream release. LP: #386220
* Refresh debian/patches/99_ltmain_as-needed.patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 *      Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
20
 *      MA 02110-1301, USA.
21
21
 *
22
 
 * $Id: speller.c 512 2009-02-27 20:30:12Z eht16 $
 
22
 * $Id: speller.c 647 2009-05-14 19:59:07Z eht16 $
23
23
 */
24
24
 
25
25
 
502
502
                        }
503
503
                        break;
504
504
                }
 
505
#ifdef SCE_PAS_DEFAULT
 
506
                case SCLEX_PASCAL:
 
507
                {
 
508
                        switch (style)
 
509
                        {
 
510
                                case SCE_PAS_DEFAULT:
 
511
                                case SCE_PAS_COMMENT:
 
512
                                case SCE_PAS_COMMENT2:
 
513
                                case SCE_PAS_COMMENTLINE:
 
514
                                case SCE_PAS_STRING:
 
515
                                case SCE_PAS_CHARACTER:
 
516
                                        return TRUE;
 
517
                                default:
 
518
                                        return FALSE;
 
519
                        }
 
520
                        break;
 
521
                }
 
522
 
 
523
#endif
505
524
                case SCLEX_CPP:
 
525
#ifndef SCE_PAS_DEFAULT
506
526
                case SCLEX_PASCAL:
 
527
#endif
507
528
                {
508
529
                        switch (style)
509
530
                        {