~ubuntu-branches/ubuntu/hardy/gnome-commander/hardy

« back to all changes in this revision

Viewing changes to src/gnome-cmd-advrename-lexer.c

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2006-06-13 15:39:48 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060613153948-gvrt3mb2ddk5u62o
Tags: 1.2.0-3
added --disable-scrollkeeper on build

Show diffs side-by-side

added added

removed removed

Lines of Context:
460
460
                                                                                      \
461
461
                  p->type = TEXT;                                                     \
462
462
                  p->s = g_string_new(yytext);                                        \
463
 
                  fname_template = g_list_append(fname_template, (gpointer) p); \
 
463
                  fname_template = g_list_append(fname_template, (gpointer) p);       \
464
464
                }
465
465
 
466
466
 
1968
1968
  find_parent_dir(gnome_cmd_file_get_path(finfo),&parent_dir_offset,&parent_dir_len);
1969
1969
  find_grandparent_dir(gnome_cmd_file_get_path(finfo),&grandparent_dir_offset,&grandparent_dir_len);
1970
1970
 
1971
 
  for (; gl ; gl=gl->next)
 
1971
  for (; gl; gl=gl->next)
1972
1972
  {
1973
1973
    CHUNK *p = gl->data;
1974
1974
 
2040
2040
 
2041
2041
  return new_fname;
2042
2042
}
2043