On Sat, Jan 05, 2019 at 12:39:56AM +0900, Akira Yokosawa wrote: > >From 426fa84ef7b5c6d0200dbd79d213e02ae31badad Mon Sep 17 00:00:00 2001 > From: Akira Yokosawa <akiyks@xxxxxxxxx> > Date: Fri, 4 Jan 2019 23:40:14 +0900 > Subject: [PATCH 1/2] datastruct/hash: Tweak indent of folded line in snippet > > For a folded line to be properly indented in the Listing environment, > it has to have the same number of tab characters as the previous > line in the code. If the folded line has a deeper indent to align > with some construct of the previous line, remaining indent depth > should be represented by space characters. > > Apply this rule to the function prototype of resize_lock_mod(). > In this case, as the previous line doesn't have any tab characters, > space characters should be used for all of its indent. > > Signed-off-by: Akira Yokosawa <akiyks@xxxxxxxxx> Ah, good point, I well recall doing that by hand when creating the old-style code displays. I applied this by hand due to an intervening conflict and pushed it. Thanx, Paul > --- > CodeSamples/datastruct/hash/hash_resize.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/CodeSamples/datastruct/hash/hash_resize.c b/CodeSamples/datastruct/hash/hash_resize.c > index 475a2ab..57c75c1 100644 > --- a/CodeSamples/datastruct/hash/hash_resize.c > +++ b/CodeSamples/datastruct/hash/hash_resize.c > @@ -163,7 +163,7 @@ static void hashtab_unlock_lookup(struct hashtab *htp_master, void *key) > /* Update-side lock/unlock functions. */ > static void //\lnlbl{lock:b} > resize_lock_mod(struct hashtab *htp_master, void *key, > - struct ht_lock_state *lsp) > + struct ht_lock_state *lsp) > { > long b; > struct ht *htp; > -- > 2.7.4 > >