The R Project SVN R

Rev

Rev 89337 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 89337 Rev 89809
Line 450... Line 450...
450
    /* options set here should be included into mandatory[] in do_options */
450
    /* options set here should be included into mandatory[] in do_options */
451
 
451
 
452
#ifdef HAVE_RL_COMPLETION_MATCHES
452
#ifdef HAVE_RL_COMPLETION_MATCHES
453
    /* value from Rf_initialize_R */
453
    /* value from Rf_initialize_R */
454
    SET_TAG(v, install("rl_word_breaks"));
454
    SET_TAG(v, install("rl_word_breaks"));
455
    SETCAR(v, mkString(" \t\n\"\\'`><=%;,|&{()}"));
455
    SETCAR(v, mkString(" \t\n\"\\'`><=;,|&{()}")); // no longer '%' for `%/%`, `%in%` ..
456
    set_rl_word_breaks(" \t\n\"\\'`><=%;,|&{()}");
456
    set_rl_word_breaks(" \t\n\"\\'`><=;,|&{()}");
457
#endif
457
#endif
458
 
458
 
459
    SET_SYMVALUE(install(".Options"), val);
459
    SET_SYMVALUE(install(".Options"), val);
460
    UNPROTECT(1);
460
    UNPROTECT(1);
461
}
461
}