Changeset 66e409c for commands.c


Ignore:
Timestamp:
Apr 2, 2010, 10:40:39 PM (14 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
Branches:
master, release-1.10, release-1.6, release-1.7, release-1.8, release-1.9
Children:
8a5b5a1
Parents:
0fe69d2
git-author:
Geoffrey Thomas <geofft@mit.edu> (12/27/08 09:32:18)
git-committer:
Nelson Elhage <nelhage@mit.edu> (04/02/10 22:40:39)
Message:
Add the "narrow-related" variable.

This controls whether narrowing to a class includes variant class
names as well.

Signed-off-by: Geoffrey Thomas <geofft@mit.edu>
[nelhage@mit.edu: Change variable name from 'modnarrow']
Signed-off-by: Nelson Elhage <nelhage@mit.edu>
File:
1 edited

Legend:

Unmodified
Added
Removed
  • commands.c

    r9186c75 r66e409c  
    22552255    return NULL;
    22562256  }
    2257   filtname = owl_function_classinstfilt(argv[1], NULL);
     2257  filtname = owl_function_classinstfilt(argv[1], NULL, owl_global_is_narrow_related(&g));
    22582258  owl_function_change_currentview_filter(filtname);
    22592259  owl_free(filtname);
     
    23672367  }
    23682368
    2369   filtname=owl_function_classinstfilt(argv[1], NULL);
     2369  filtname=owl_function_classinstfilt(argv[1], NULL, owl_global_is_narrow_related(&g));
    23702370  (void) owl_function_color_filter(filtname, argv[2], (argc == 4 ? argv[3] : NULL));
    23712371  return NULL;
Note: See TracChangeset for help on using the changeset viewer.