changeset 17437:20d1b911b4e7 classdef

* libinterp/corefcn/load-path.cc (genpath): Ignore package dirs.
author Michael Goffioul <michael.goffioul@gmail.com>
date Thu, 12 Sep 2013 21:08:07 -0400
parents 498b2dd1bd56
children
files libinterp/corefcn/load-path.cc
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/load-path.cc
+++ b/libinterp/corefcn/load-path.cc
@@ -2076,7 +2076,8 @@
         {
           std::string elt = dirlist[i];
 
-          bool skip_p = (elt == "." || elt == ".." || elt[0] == '@');
+          bool skip_p = (elt == "." || elt == ".." || elt[0] == '@'
+                         || elt[0] == '+');
 
           if (! skip_p)
             {